graphi Changelog¶
prerelease 201?-??-??¶
- Overview
Added operator interface and implementations
Added graph input/output
Added Cython graph implementation
- Major Changes
Added
graph[item] = True, which is equal tograph.add(item). Deprecates bothgraph[node] = nodeandgraph[node] = None.The class
graphi.graphalways uses the best implementation available- New Features
Operator interface allowing graphs types to use optimized implementations
Added operators:
neighbours(graph, node, ..)density(graph)Added input formats:
- csv
- GraphML
Minor Changes
Graphs explicitly definebool(graph). This was previously implicitly available asboolfalls back to__len__.
0.2.0 2018-07-31¶
- Notes
- Definition of primary interface, algorithms (
Graph.neighbours) will be revised- New Features
- Added AdjacencyGraph
- Major Changes
- Defined graph container interface
- Minor Changes
- Added documentation