template<typename GR, typename V, typename C>
class lemon::CycleCanceling< GR, V, C >
CycleCanceling implements three different cycle-canceling algorithms for finding a minimum cost flow [1], [25], [17]. The most efficent one is the Cancel-and-Tighten algorithm, thus it is the default method. It runs in strongly polynomial time O(n2e2log(n)), but in practice, it is typically orders of magnitude slower than the scaling algorithms and NetworkSimplex. (For more information, see the module page.)
Most of the parameters of the problem (except for the digraph) can be given using separate functions, and the algorithm can be executed using the run() function. If some parameters are not specified, then default values will be used.
- Template Parameters
-
GR | The digraph type the algorithm runs on. |
V | The number type used for flow amounts, capacity bounds and supply values in the algorithm. By default, it is int . |
C | The number type used for costs and potentials in the algorithm. By default, it is the same as V . |
- Warning
- Both
V
and C
must be signed number types.
-
All input data (capacities, supply values, and costs) must be integer.
-
This algorithm does not support negative costs for arcs having infinite upper bound.
- Note
- For more information about the three available methods, see Method.
|
| CycleCanceling (const GR &graph) |
| Constructor.
|
|
|
The parameters of the algorithm can be specified using these functions.
|
template<typename LowerMap > |
CycleCanceling & | lowerMap (const LowerMap &map) |
| Set the lower bounds on the arcs.
|
|
template<typename UpperMap > |
CycleCanceling & | upperMap (const UpperMap &map) |
| Set the upper bounds (capacities) on the arcs.
|
|
template<typename CostMap > |
CycleCanceling & | costMap (const CostMap &map) |
| Set the costs of the arcs.
|
|
template<typename SupplyMap > |
CycleCanceling & | supplyMap (const SupplyMap &map) |
| Set the supply values of the nodes.
|
|
CycleCanceling & | stSupply (const Node &s, const Node &t, Value k) |
| Set single source and target nodes and a supply value.
|
|
|
The algorithm can be executed using run().
|
ProblemType | run (Method method=CANCEL_AND_TIGHTEN) |
| Run the algorithm.
|
|
CycleCanceling & | resetParams () |
| Reset all the parameters that have been given before.
|
|
CycleCanceling & | reset () |
| Reset the internal data structures and all the parameters that have been given before.
|
|
|
The results of the algorithm can be obtained using these functions.
The run() function must be called before using them.
|
template<typename Number > |
Number | totalCost () const |
| Return the total cost of the found flow.
|
|
Value | flow (const Arc &a) const |
| Return the flow on the given arc.
|
|
template<typename FlowMap > |
void | flowMap (FlowMap &map) const |
| Copy the flow values (the primal solution) into the given map.
|
|
Cost | potential (const Node &n) const |
| Return the potential (dual value) of the given node.
|
|
template<typename PotentialMap > |
void | potentialMap (PotentialMap &map) const |
| Copy the potential values (the dual solution) into the given map.
|
|
This function runs the algorithm. The paramters can be specified using functions lowerMap(), upperMap(), costMap(), supplyMap(), stSupply(). For example,
CycleCanceling<ListDigraph> cc(graph);
cc.lowerMap(lower).upperMap(upper).costMap(cost)
.supplyMap(sup).run();
This function can be called more than once. All the given parameters are kept for the next call, unless resetParams() or reset() is used, thus only the modified parameters have to be set again. If the underlying digraph was also modified after the construction of the class (or the last reset() call), then the reset() function must be called.
- Parameters
-
method | The cycle-canceling method that will be used. For more information, see Method. |
- Returns
INFEASIBLE
if no feasible flow exists,
OPTIMAL
if the problem has optimal solution (i.e. it is feasible and bounded), and the algorithm has found optimal flow and node potentials (primal and dual solutions),
UNBOUNDED
if the digraph contains an arc of negative cost and infinite upper bound. It means that the objective function is unbounded on that arc, however, note that it could actually be bounded over the feasible flows, but this algroithm cannot handle these cases.
- See Also
- ProblemType, Method
-
resetParams(), reset()
This function resets all the paramaters that have been given before using functions lowerMap(), upperMap(), costMap(), supplyMap(), stSupply().
It is useful for multiple run() calls. Basically, all the given parameters are kept for the next run() call, unless resetParams() or reset() is used. If the underlying digraph was also modified after the construction of the class or the last reset() call, then the reset() function must be used, otherwise resetParams() is sufficient.
For example,
CycleCanceling<ListDigraph> cs(graph);
cc.lowerMap(lower).upperMap(upper).costMap(cost)
.supplyMap(sup).run();
cost[e] += 100;
cc.costMap(cost).run();
cc.resetParams();
cc.upperMap(capacity).costMap(cost)
.supplyMap(sup).run();
- Returns
(*this)
- See Also
- reset(), run()