Releases: formularin/cygraph
Releases · formularin/cygraph
v0.2.1
Updated Graph class API
An update to the Graph classes' functionality, as well as some other miscellaneous things.
New Features
- Graphs can now be instantiated from adjacency lists and adjacency matrices.
- New
Graph.equals
method for graph comparison. - New
add_edges
andadd_vertices
methods for adding multiple vertices or edges in a single method call. - Pickling functionality.
- New
add_edge_attributes
andadd_vertex_attributes
methods for adding multiple attributes at a time to a single edge or vertex. - Split the functionality of
add_edge
intoadd_edge
andset_edge_weight
- Change the order of parameters in
cg.graph
v0.1.6
Cygraph v0.1.6 Release Notes
New Features
- DynamicGraph and StaticGraph classes.
- Graph theory algorithm implementations
- Connected components and strongly connected components
- Articulation points
- Dijkstra's shortest path
- Karger's algorithm