class NetworkX::Level
Helper class for preflow push algorithm
Attributes
active[R]
inactive[R]
Public Class Methods
new()
click to toggle source
# File lib/networkx/flow/utils.rb, line 29 def initialize @inactive = Set.new @active = Set.new end