Skip to main content

Module compact

Module compact 

Source
Expand description

Compact graph representations for memory efficiency

This module provides memory-efficient graph storage formats optimized for different graph characteristics (sparse, dense, regular degree, etc.).

Structs§

BitPackedGraph
Bit-packed representation for unweighted graphs
CSRGraph
Compressed Sparse Row (CSR) format for sparse graphs
CompressedAdjacencyList
Compressed adjacency list using variable-length encoding
MemmapGraph
Memory-mapped graph for extremely large graphs that don’t fit in RAM

Enums§

HybridGraph
Hybrid graph representation that chooses optimal format based on graph properties