template<typename GR, typename LM, typename UM, typename SM, typename TR>
class lemon::Circulation< GR, LM, UM, SM, TR >
This class implements a push-relabel algorithm for the network circulation problem. It is to find a feasible circulation when lower and upper bounds are given for the flow values on the arcs and lower bounds are given for the difference between the outgoing and incoming flow at the nodes.
The exact formulation of this problem is the following. Let be a digraph, denote the lower and upper bounds on the arcs, for which holds for all , and denotes the signed supply values of the nodes. If , then is a supply node with supply, if , then is a demand node with demand. A feasible circulation is an solution of the following problem.
The sum of the supply values, i.e. must be zero or negative in order to have a feasible solution (since the sum of the expressions on the left-hand side of the inequalities is zero). It means that the total demand must be greater or equal to the total supply and all the supplies have to be carried out from the supply nodes, but there could be demands that are not satisfied. If is zero, then all the supply/demand constraints have to be satisfied with equality, i.e. all demands have to be satisfied and all supplies have to be used.
If you need the opposite inequalities in the supply/demand constraints (i.e. the total demand is less than the total supply and all the demands have to be satisfied while there could be supplies that are not used), then you could easily transform the problem to the above form by reversing the direction of the arcs and taking the negative of the supply values (e.g. using ReverseDigraph and NegMap adaptors).
This algorithm either calculates a feasible circulation, or provides a barrier, which prooves that a feasible soultion cannot exist.
Note that this algorithm also provides a feasible solution for the minimum cost flow problem.
- Template Parameters
-
GR | The type of the digraph the algorithm runs on. |
LM | The type of the lower bound map. The default map type is GR::ArcMap<int>. |
UM | The type of the upper bound (capacity) map. The default map type is LM . |
SM | The type of the supply map. The default map type is GR::NodeMap<UM::Value>. |
TR | The traits class that defines various types used by the algorithm. By default, it is CirculationDefaultTraits<GR, LM, UM, SM>. In most cases, this parameter should not be set directly, consider to use the named template parameters instead. |
|
| Circulation (const Digraph &graph, const LowerMap &lower, const UpperMap &upper, const SupplyMap &supply) |
| Constructor.
|
|
| ~Circulation () |
| Destructor.
|
|
Circulation & | lowerMap (const LowerMap &map) |
| Sets the lower bound map.
|
|
Circulation & | upperMap (const UpperMap &map) |
| Sets the upper bound (capacity) map.
|
|
Circulation & | supplyMap (const SupplyMap &map) |
| Sets the supply map.
|
|
Circulation & | flowMap (FlowMap &map) |
| Sets the flow map.
|
|
Circulation & | elevator (Elevator &elevator) |
| Sets the elevator used by algorithm.
|
|
const Elevator & | elevator () const |
| Returns a const reference to the elevator.
|
|
Circulation & | tolerance (const Tolerance &tolerance) |
| Sets the tolerance used by the algorithm.
|
|
const Tolerance & | tolerance () const |
| Returns a const reference to the tolerance.
|
|
|
The simplest way to execute the algorithm is to call run().
If you need better control on the initial solution or the execution, you have to call one of the init() functions first, then the start() function.
|
void | init () |
| Initializes the internal data structures.
|
|
void | greedyInit () |
| Initializes the internal data structures using a greedy approach.
|
|
bool | start () |
| Executes the algorithm.
|
|
bool | run () |
| Runs the algorithm.
|
|
|
The results of the circulation algorithm can be obtained using these functions.
Either run() or start() should be called before using them.
|
Value | flow (const Arc &arc) const |
| Returns the flow value on the given arc.
|
|
const FlowMap & | flowMap () const |
| Returns a const reference to the flow map.
|
|
bool | barrier (const Node &node) const |
| Returns true if the given node is in a barrier.
|
|
template<class BarrierMap > |
void | barrierMap (BarrierMap &bar) const |
| Gives back a barrier.
|
|
|
The feasibility of the results can be checked using these functions.
Either run() or start() should be called before using them.
|
bool | checkFlow () const |
| Check if the found flow is a feasible circulation.
|
|
bool | checkBarrier () const |
| Check whether or not the last execution provides a barrier.
|
|