Menu

graph-utils / News: Recent posts

graph-utils 0.65 released

Added:
* Eulerian chains/cycles
* Hamiltonian chains/cycles - Roberts/Flores method

Posted by gut 2007-04-30

graph-utils 0.60 released

Added:
* Centers and medians (for directed and undirected graphs)
* p-medians (for undirected graphs) /Branch and bound algorithm/

Posted by gut 2007-04-16

graph-utils 0.56 released

Added:
* Graph compliment calculation
* Approximative colouring

Posted by gut 2007-04-07

graph-utils 0.55 released

Added:
* Bron and Kerbosch method (maximum independent set problem) - bug fixes
* Cliques and clique number (density) calculation /maximum independent sets for graph compliment/
* Chromatic number and optimal colouring

Posted by gut 2007-04-03

graph-utils 0.50 released

Added:

* Numbers
- number of nodes
- number of edges
- number of connected components
- cyclomatic number
- in-degrees and out-degrees for nodes
* Bron and Kerbosch method (maximum independent set problem)

Posted by gut 2007-03-10

graph-utils 0.45 released

Ford-Fulkerson method / Edmonds-Karp algorithm added (maximum flow problem)

Posted by gut 2007-02-19

graph-utils 0.40 released

Prim algorithm added (minimum-spanning-tree problem) /using trivial array-based implementation of a priority queue/

Kruskal algorithm added (minimum-spanning-tree problem) /using disjoint-set data structure with path compression and union by rank heuristics/

Posted by gut 2007-02-11

graph-utils 0.35 released

Dijkstra algorithm added (single-source shortest-path problem) /using trivial array-based implementation of a priority queue/

Floyd-Warshall algorithm added (all pairs shortest-path problem)

Posted by gut 2007-02-04

graph-utils 0.30 released

Bellman-Ford algorithm added (single-source shortest-path problem).

Posted by gut 2007-01-31

graph-utils 0.25 released

Depth-first search (DFS) added.

Posted by gut 2007-01-29

graph_utils 0.20 released

Breadth-first search (BFS) added.

Posted by gut 2007-01-27

graph_utils 0.1 released

This release contains binary search tree algorithms only.

Posted by gut 2007-01-20