DynamicGraph¶
- class stgraph.graph.DynamicGraph(edge_list: list, max_num_nodes: int)[source]¶
Bases:
STGraphBaseRepresent Dynamic Graphs in STGraph.
This abstract class outlines the interface for defining a dynamic graph used in STGraph. As of now the dynamic graph is implemented using the following graph representation format:
Compressed Sparse Row (CSR)
Packed Compressed Sparse Row (PCSR)
GPMA
Please note that this documentation is still work in progress.