Default traits class of MaxCardinalitySearch class.
Digraph | Digraph type. |
CapacityMap | Type of capacity map. |
#include <lemon/max_cardinality_search.h>
Public Types | |
typedef GR | Digraph |
The digraph type the algorithm runs on. | |
typedef CapMapSelector< CAP > ::CapacityMap | CapacityMap |
The type of the map that stores the arc capacities. | |
typedef CapacityMap::Value | Value |
The type of the capacity of the arcs. | |
typedef Digraph::template NodeMap< int > | HeapCrossRef |
The cross reference type used by heap. | |
typedef HeapSelector < CapacityMap >::template Selector< Value, HeapCrossRef > ::Heap | Heap |
The heap type used by MaxCardinalitySearch algorithm. | |
typedef NullMap< typename Digraph::Node, bool > | ProcessedMap |
The type of the map that stores whether a node is processed. | |
typedef Digraph::template NodeMap< Value > | CardinalityMap |
The type of the map that stores the cardinalities of the nodes. | |
Static Public Member Functions | |
static CapacityMap * | createCapacityMap (const Digraph &digraph) |
Instantiates a CapacityMap. | |
static HeapCrossRef * | createHeapCrossRef (const Digraph &digraph) |
Instantiates a HeapCrossRef. | |
static Heap * | createHeap (HeapCrossRef &crossref) |
Instantiates a Heap. | |
static ProcessedMap * | createProcessedMap (const Digraph &digraph) |
Instantiates a ProcessedMap. | |
static CardinalityMap * | createCardinalityMap (const Digraph &digraph) |
Instantiates a CardinalityMap. | |
typedef CapMapSelector<CAP>::CapacityMap CapacityMap |
The type of the map that stores the arc capacities. It must meet the ReadMap concept.
typedef Digraph::template NodeMap<int> HeapCrossRef |
The cross reference type used by heap. Usually it is Digraph::NodeMap<int>
.
typedef HeapSelector<CapacityMap>::template Selector<Value, HeapCrossRef>::Heap Heap |
The heap type used by MaxCardinalitySearch algorithm. It should maximalize the priorities. The default heap type is the BinHeap, but it is specialized when the CapacityMap is ConstMap<Digraph::Node, Const<int, 1> > to BucketHeap.
typedef NullMap<typename Digraph::Node, bool> ProcessedMap |
typedef Digraph::template NodeMap<Value> CardinalityMap |
The type of the map that stores the cardinalities of the nodes. It must meet the WriteMap concept.
|
inlinestatic |
This function instantiates a CapacityMap.
digraph | is the digraph, to which we would like to define the CapacityMap. |
|
inlinestatic |
This function instantiates a HeapCrossRef.
digraph | is the digraph, to which we would like to define the HeapCrossRef. |
|
inlinestatic |
This function instantiates a Heap.
crossref | The cross reference of the heap. |
|
inlinestatic |
This function instantiates a ProcessedMap.
digraph | is the digraph, to which we would like to define the ProcessedMap |
|
inlinestatic |
This function instantiates a CardinalityMap.
digraph | is the digraph, to which we would like to define the CardinalityMap |