|
Aleph-w 3.0
A C++ Library for Data Structures and Algorithms
|
Represents a flow cycle in the network. More...
#include <tpl_maxflow.H>
Public Types | |
| using | Arc = typename Net::Arc |
| using | Node = typename Net::Node |
| using | Flow_Type = typename Net::Flow_Type |
Public Attributes | |
| DynList< Arc * > | arcs |
| Arcs in the cycle. | |
| DynList< Node * > | nodes |
| Nodes in the cycle. | |
| Flow_Type | flow {0} |
| Flow on this cycle. | |
Represents a flow cycle in the network.
A flow cycle is a closed path with a positive flow. These only occur with lower bounds or in residual networks.
| Net | Network type. |
Definition at line 758 of file tpl_maxflow.H.
Definition at line 760 of file tpl_maxflow.H.
Definition at line 762 of file tpl_maxflow.H.
Definition at line 761 of file tpl_maxflow.H.
Arcs in the cycle.
Definition at line 764 of file tpl_maxflow.H.
| Flow_Type Aleph::FlowCycle< Net >::flow {0} |
Flow on this cycle.
Definition at line 766 of file tpl_maxflow.H.
Nodes in the cycle.
Definition at line 765 of file tpl_maxflow.H.