Expand description
Core Dynamic Minimum Cut Algorithm
Provides the main algorithm with:
- O(n^{o(1)}) amortized update time
- Support for edge insertions and deletions
- Both exact and approximate modes
§Modules
replacement: Replacement edge index for tree edge deletionsapproximate: (1+ε)-approximate min-cut for all cut sizes (SODA 2025)
Re-exports§
pub use replacement::ReplacementEdgeIndex;pub use replacement::ReplacementIndexStats;
Modules§
- approximate
- Approximate Min-Cut for All Cut Sizes
- replacement
- Replacement edge data structure for O(log n) reconnection
Structs§
- Algorithm
Stats - Statistics about algorithm performance
- Dynamic
MinCut - The main dynamic minimum cut structure
- MinCut
Builder - Builder for DynamicMinCut
- MinCut
Config - Configuration for the minimum cut algorithm
- MinCut
Result - Result of a minimum cut query