template<typename GR, typename CAP, typename TR>
class lemon::MaxCardinalitySearch< GR, CAP, TR >
This class provides an efficient implementation of Maximum Cardinality Search algorithm. The maximum cardinality search first chooses any node of the digraph. Then every time it chooses one unprocessed node with maximum cardinality, i.e the sum of capacities on out arcs to the nodes which were previusly processed. If there is a cut in the digraph the algorithm should choose again any unprocessed node of the digraph. The arc capacities are passed to the algorithm using a ReadMap, so it is easy to change it to any kind of capacity.
The type of the capacity is determined by the Value of the capacity map.
It is also possible to change the underlying priority heap.
- Parameters
-
|
|
typedef Traits::Digraph | Digraph |
| | The type of the underlying digraph.
|
|
typedef Traits::CapacityMap::Value | Value |
| | The type of the capacity of the arcs.
|
|
typedef Traits::CapacityMap | CapacityMap |
| | The type of the map that stores the arc capacities.
|
|
typedef Traits::ProcessedMap | ProcessedMap |
| | The type of the map indicating if a node is processed.
|
|
typedef Traits::CardinalityMap | CardinalityMap |
| | The type of the map that stores the cardinalities of the nodes.
|
|
typedef Traits::HeapCrossRef | HeapCrossRef |
| | The cross reference type used for the current heap.
|
|
typedef Traits::Heap | Heap |
| | The heap type used by the algorithm. It maximizes the priorities.
|
|
| | MaxCardinalitySearch (const Digraph &digraph, const CapacityMap &capacity) |
| | Constructor.
|
| | MaxCardinalitySearch (const Digraph &digraph) |
| | Constructor.
|
|
| ~MaxCardinalitySearch () |
| | Destructor.
|
| MaxCardinalitySearch & | capacityMap (const CapacityMap &m) |
| | Sets the capacity map.
|
| const CapacityMap & | capacityMap () const |
| | Returns a const reference to the capacity map.
|
| MaxCardinalitySearch & | cardinalityMap (CardinalityMap &m) |
| | Sets the map storing the cardinalities calculated by the algorithm.
|
| MaxCardinalitySearch & | processedMap (ProcessedMap &m) |
| | Sets the map storing the processed nodes.
|
| const ProcessedMap & | processedMap () const |
| | Returns a const reference to the cardinality map.
|
| MaxCardinalitySearch & | heap (Heap &hp, HeapCrossRef &cr) |
| | Sets the heap and the cross reference used by algorithm.
|
| const Heap & | heap () const |
| | Returns a const reference to the heap.
|
| const HeapCrossRef & | heapCrossRef () const |
| | Returns a const reference to the cross reference.
|
The simplest way to execute the algorithm is to use one of the member functions called run().
If you need more control on the execution, first you must call init(), then you can add several source nodes with addSource(). Finally start() will perform the computation.
|
| void | init () |
| | Initializes the internal data structures.
|
| void | addSource (Node source, Value capacity=0) |
| | Adds a new source node.
|
| Node | processNextNode () |
| | Processes the next node in the priority heap.
|
| Node | nextNode () |
| | Next node to be processed.
|
| bool | emptyQueue () |
| | Returns false if there are nodes to be processed in the priority heap.
|
| int | emptySize () |
| | Returns the number of the nodes to be processed in the priority heap.
|
| void | start () |
| | Executes the algorithm.
|
| void | start (Node dest) |
| | Executes the algorithm until dest is reached.
|
| template<typename NodeBoolMap> |
| void | start (const NodeBoolMap &nm) |
| | Executes the algorithm until a condition is met.
|
| void | run (Node s) |
| | Runs the maximum cardinality search algorithm from node s.
|
| void | run () |
| | Runs the maximum cardinality search algorithm for the whole digraph.
|
The results of the maximum cardinality search algorithm can be obtained using these functions.
Before the use of these functions, either run() or start() must be called.
|
| Value | cardinality (Node node) const |
| | The cardinality of a node.
|
| Value | currentCardinality (Node node) const |
| | The current cardinality of a node.
|
| const CardinalityMap & | cardinalityMap () const |
| | Returns a reference to the NodeMap of cardinalities.
|
| bool | reached (Node v) |
| | Checks if a node is reachable from the root.
|
| bool | processed (Node v) |
| | Checks if a node is processed.
|