Public Types | Public Member Functions | Public Attributes

CycleCanceling< GR, V, C > Class Template Reference


Detailed Description

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 [AMO93], [Kle67], [GT89]. The most efficent one (both theoretically and practically) is the Cancel and Tighten algorithm, thus it is the default method. It is strongly polynomial, but in practice, it is typically much slower than the scaling algorithms and NetworkSimplex.

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:
GRThe digraph type the algorithm runs on.
VThe number type used for flow amounts, capacity bounds and supply values in the algorithm. By default, it is int.
CThe number type used for costs and potentials in the algorithm. By default, it is the same as V.
Warning:
Both number types must be signed and all input data must be integer.
This algorithm does not support negative costs for such arcs that have infinite upper bound.
Note:
For more information about the three available methods, see Method.

#include <lemon/cycle_canceling.h>

List of all members.

Public Types

enum  ProblemType { INFEASIBLE, OPTIMAL, UNBOUNDED }
 

Problem type constants for the run() function.

More...
enum  Method { SIMPLE_CYCLE_CANCELING, MINIMUM_MEAN_CYCLE_CANCELING, CANCEL_AND_TIGHTEN }
 

Constants for selecting the used method.

More...
typedef GR Digraph
 The type of the digraph.
typedef V Value
 The type of the flow amounts, capacity bounds and supply values.
typedef C Cost
 The type of the arc costs.

Public Member Functions

 CycleCanceling (const GR &graph)
 Constructor.
Parameters

The parameters of the algorithm can be specified using these functions.

template<typename LowerMap >
CycleCancelinglowerMap (const LowerMap &map)
 Set the lower bounds on the arcs.
template<typename UpperMap >
CycleCancelingupperMap (const UpperMap &map)
 Set the upper bounds (capacities) on the arcs.
template<typename CostMap >
CycleCancelingcostMap (const CostMap &map)
 Set the costs of the arcs.
template<typename SupplyMap >
CycleCancelingsupplyMap (const SupplyMap &map)
 Set the supply values of the nodes.
CycleCancelingstSupply (const Node &s, const Node &t, Value k)
 Set single source and target nodes and a supply value.
Execution control

The algorithm can be executed using run().

ProblemType run (Method method=CANCEL_AND_TIGHTEN)
 Run the algorithm.
CycleCancelingresetParams ()
 Reset all the parameters that have been given before.
CycleCancelingreset ()
 Reset the internal data structures and all the parameters that have been given before.
Query Functions

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).

Public Attributes

const Value INF
 Constant for infinite upper bounds (capacities).

Member Enumeration Documentation

Enum type containing the problem type constants that can be returned by the run() function of the algorithm.

Enumerator:
INFEASIBLE 

The problem has no feasible solution (flow).

OPTIMAL 

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 

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.

enum Method

Enum type containing constants for selecting the used method for the run() function.

CycleCanceling provides three different cycle-canceling methods. By default, Cancel and Tighten is used, which proved to be the most efficient and the most robust on various test inputs. However, the other methods can be selected using the run() function with the proper parameter.

Enumerator:
SIMPLE_CYCLE_CANCELING 

A simple cycle-canceling method, which uses the Bellman-Ford algorithm with limited iteration number for detecting negative cycles in the residual network.

MINIMUM_MEAN_CYCLE_CANCELING 

The "Minimum Mean Cycle-Canceling" algorithm, which is a well-known strongly polynomial method [GT89]. It improves along a minimum mean cycle in each iteration. Its running time complexity is O(n2m3log(n)).

CANCEL_AND_TIGHTEN 

The "Cancel And Tighten" algorithm, which can be viewed as an improved version of the previous method [GT89]. It is faster both in theory and in practice, its running time complexity is O(n2m2log(n)).


Constructor & Destructor Documentation

CycleCanceling ( const GR &  graph) [inline]

The constructor of the class.

Parameters:
graphThe digraph the algorithm runs on.

Member Function Documentation

CycleCanceling& lowerMap ( const LowerMap &  map) [inline]

This function sets the lower bounds on the arcs. If it is not used before calling run(), the lower bounds will be set to zero on all arcs.

Parameters:
mapAn arc map storing the lower bounds. Its Value type must be convertible to the Value type of the algorithm.
Returns:
(*this)
CycleCanceling& upperMap ( const UpperMap &  map) [inline]

This function sets the upper bounds (capacities) on the arcs. If it is not used before calling run(), the upper bounds will be set to INF on all arcs (i.e. the flow value will be unbounded from above).

Parameters:
mapAn arc map storing the upper bounds. Its Value type must be convertible to the Value type of the algorithm.
Returns:
(*this)
CycleCanceling& costMap ( const CostMap &  map) [inline]

This function sets the costs of the arcs. If it is not used before calling run(), the costs will be set to 1 on all arcs.

Parameters:
mapAn arc map storing the costs. Its Value type must be convertible to the Cost type of the algorithm.
Returns:
(*this)
CycleCanceling& supplyMap ( const SupplyMap &  map) [inline]

This function sets the supply values of the nodes. If neither this function nor stSupply() is used before calling run(), the supply of each node will be set to zero.

Parameters:
mapA node map storing the supply values. Its Value type must be convertible to the Value type of the algorithm.
Returns:
(*this)
CycleCanceling& stSupply ( const Node &  s,
const Node &  t,
Value  k 
) [inline]

This function sets a single source node and a single target node and the required flow value. If neither this function nor supplyMap() is used before calling run(), the supply of each node will be set to zero.

Using this function has the same effect as using supplyMap() with such a map in which k is assigned to s, -k is assigned to t and all other nodes have zero supply value.

Parameters:
sThe source node.
tThe target node.
kThe required amount of flow from node s to node t (i.e. the supply of s and the demand of t).
Returns:
(*this)
ProblemType run ( Method  method = CANCEL_AND_TIGHTEN) [inline]

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:
methodThe 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()
CycleCanceling& resetParams ( ) [inline]

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);

   // First run
   cc.lowerMap(lower).upperMap(upper).costMap(cost)
     .supplyMap(sup).run();

   // Run again with modified cost map (resetParams() is not called,
   // so only the cost map have to be set again)
   cost[e] += 100;
   cc.costMap(cost).run();

   // Run again from scratch using resetParams()
   // (the lower bounds will be set to zero on all arcs)
   cc.resetParams();
   cc.upperMap(capacity).costMap(cost)
     .supplyMap(sup).run();
Returns:
(*this)
See also:
reset(), run()
CycleCanceling& reset ( ) [inline]

This function resets the internal data structures and 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.

See resetParams() for examples.

Returns:
(*this)
See also:
resetParams(), run()
Number totalCost ( ) const [inline]

This function returns the total cost of the found flow. Its complexity is O(e).

Note:
The return type of the function can be specified as a template parameter. For example,
   cc.totalCost<double>();
It is useful if the total cost cannot be stored in the Cost type of the algorithm, which is the default return type of the function.
Precondition:
run() must be called before using this function.
Value flow ( const Arc &  a) const [inline]

This function returns the flow on the given arc.

Precondition:
run() must be called before using this function.
void flowMap ( FlowMap &  map) const [inline]

This function copies the flow value on each arc into the given map. The Value type of the algorithm must be convertible to the Value type of the map.

Precondition:
run() must be called before using this function.
Cost potential ( const Node &  n) const [inline]

This function returns the potential (dual value) of the given node.

Precondition:
run() must be called before using this function.
void potentialMap ( PotentialMap &  map) const [inline]

This function copies the potential (dual value) of each node into the given map. The Cost type of the algorithm must be convertible to the Value type of the map.

Precondition:
run() must be called before using this function.

Member Data Documentation

const Value INF

Constant for infinite upper bounds (capacities). It is std::numeric_limits<Value>::infinity() if available, std::numeric_limits<Value>::max() otherwise.

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines