Expand description
Instance Manager for Bounded-Range Dynamic Minimum Cut
Implements the wrapper algorithm from the December 2024 paper (arxiv:2512.13105). Manages O(log n) bounded-range instances with geometric ranges using factor 1.2.
§Overview
The wrapper maintains instances with ranges:
- Instance i: [λ_min[i], λ_max[i]] where
- λ_min[i] = floor(1.2^i)
- λ_max[i] = floor(1.2^(i+1))
§Algorithm
- Buffer edge insertions and deletions
- On query, process instances in increasing order
- Apply inserts before deletes (order invariant)
- Stop when instance returns AboveRange
§Time Complexity
- O(log n) instances
- O(log n) query time (amortized)
- Subpolynomial update time per instance
Structs§
- MinCut
Wrapper - The main wrapper managing O(log n) bounded instances
Enums§
- MinCut
Result - Result of a minimum cut query