forked from pmatiello/python-graph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
79 lines (53 loc) · 1.8 KB
/
README
File metadata and controls
79 lines (53 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
python-graph
A library for working with graphs in Python
--------------------------------------------------------------------------------
AUTHORS AND CONTRIBUTORS
Pedro Matiello <[email protected]>
* Project maintainer/leader;
* Graph, Digraph and Hipergraph classes;
* Accessibility algorithms;
* Cut-node and cut-edge detection;
* Cycle detection;
* Depth-first and Breadth-first searching;
* Minimal Spanning Tree (Prim's algorithm);
* Random graph generation;
* Topological sorting;
* Traversals;
* XML reading/writing;
* Refactoring.
Eugen Zagorodniy <[email protected]>
* Mutual Accessibility (Tarjan's Algorithm).
Christian Muise <[email protected]>
* Dot file reading/writing;
* Hypergraph class;
* Refactoring.
Johannes Reinhardt <[email protected]>
* Refactoring.
Nathan Davis <[email protected]>
* Faster node insertion.
Paul Harrison <[email protected]>
* Mutual Accessibility (Tarjan's Algorithm).
Rhys Ulerich <[email protected]>
* Dijkstra's Shortest path algorithm.
Roy Smith <[email protected]>
* Heuristic Searching (A* algorithm).
Salim Fadhley <[email protected]>
* Porting of Roy Smith's A* implementation to python-graph;
* Edmond Chow's heuristic for A*;
* Refactoring.
Tomaz Kovacic <[email protected]>
* Transitive edge detection;
* Critical path algorithm.
Zsolt Haraszti <[email protected]>
* Weighted random generated graphs.
LICENSE
This software is provided under the MIT license. See accompanying COPYING file for details.
DOCUMENTATION
To generate the API documentation for this package, run:
make docs
You'll need epydoc installed in your system.
WEBSITE
The latest version of this package can be found at:
http://code.google.com/p/python-graph/
Please report bugs at:
http://code.google.com/p/python-graph/issues/list