template<typename GR, typename V = int, typename C = V>
class lemon::NetworkSimplex< GR, V, C >
NetworkSimplex implements the primal Network Simplex algorithm for finding a minimum cost flow. This algorithm is a specialized version of the linear programming simplex method directly for the minimum cost flow problem. It is one of the most efficient solution methods.
In general this class is the fastest implementation available in LEMON for the minimum cost flow problem. Moreover it supports both directions of the supply/demand inequality constraints. For more information see SupplyType.
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 value type used for flow amounts, capacity bounds and supply values in the algorithm. By default it is int . |
C | The value type used for costs and potentials in the algorithm. By default it is the same as V . |
- Warning
- Both value types must be signed and all input data must be integer.
- Note
- NetworkSimplex provides five different pivot rule implementations, from which the most efficient one is used by default. For more information see PivotRule.
|
| NetworkSimplex (const GR &graph) |
| Constructor.
|
|
|
The parameters of the algorithm can be specified using these functions.
|
template<typename LowerMap > |
NetworkSimplex & | lowerMap (const LowerMap &map) |
| Set the lower bounds on the arcs.
|
|
template<typename UpperMap > |
NetworkSimplex & | upperMap (const UpperMap &map) |
| Set the upper bounds (capacities) on the arcs.
|
|
template<typename CostMap > |
NetworkSimplex & | costMap (const CostMap &map) |
| Set the costs of the arcs.
|
|
template<typename SupplyMap > |
NetworkSimplex & | supplyMap (const SupplyMap &map) |
| Set the supply values of the nodes.
|
|
NetworkSimplex & | stSupply (const Node &s, const Node &t, Value k) |
| Set single source and target nodes and a supply value.
|
|
NetworkSimplex & | supplyType (SupplyType supply_type) |
| Set the type of the supply constraints.
|
|
|
The algorithm can be executed using run().
|
ProblemType | run (PivotRule pivot_rule=BLOCK_SEARCH) |
| Run the algorithm.
|
|
NetworkSimplex & | reset () |
| Reset 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 |
| Return the flow map (the primal solution).
|
|
Cost | potential (const Node &n) const |
| Return the potential (dual value) of the given node.
|
|
template<typename PotentialMap > |
void | potentialMap (PotentialMap &map) const |
| Return the potential map (the dual solution).
|
|
This function runs the algorithm. The paramters can be specified using functions lowerMap(), upperMap(), costMap(), supplyMap(), stSupply(), supplyType(). For example,
NetworkSimplex<ListDigraph> ns(graph);
ns.lowerMap(lower).upperMap(upper).costMap(cost)
.supplyMap(sup).run();
This function can be called more than once. All the parameters that have been given are kept for the next call, unless reset() is called, thus only the modified parameters have to be set again. See reset() for examples. However the underlying digraph must not be modified after this class have been constructed, since it copies and extends the graph.
- Parameters
-
pivot_rule | The pivot rule that will be used during the algorithm. For more information see PivotRule. |
- 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 objective function of the problem is unbounded, i.e. there is a directed cycle having negative total cost and infinite upper bound.
- See Also
- ProblemType, PivotRule
This function resets all the paramaters that have been given before using functions lowerMap(), upperMap(), costMap(), supplyMap(), stSupply(), supplyType().
It is useful for multiple run() calls. If this function is not used, all the parameters given before are kept for the next run() call. However the underlying digraph must not be modified after this class have been constructed, since it copies and extends the graph.
For example,
NetworkSimplex<ListDigraph> ns(graph);
ns.lowerMap(lower).upperMap(upper).costMap(cost)
.supplyMap(sup).run();
cost[e] += 100;
ns.costMap(cost).run();
ns.reset();
ns.upperMap(capacity).costMap(cost)
.supplyMap(sup).run();
- Returns
(*this)