43 #ifndef LEVEL_CONSTRUCTOR_HPP 44 #define LEVEL_CONSTRUCTOR_HPP 82 level_constructor(std::map<vertex, unsigned int>& _map_levels_true, std::deque<vertex>& _deque_levels_true);
level_constructor(std::map< vertex, unsigned int > &_map_levels_true, std::deque< vertex > &_deque_levels_true)
Constructor.
Class specification of the graph structures.
std::map< vertex, unsigned int > & map_levels_true
Map vertex to position in topological order; in the sorting then part vertices come before else part ...
redefinition of map to manage ordered/unordered structures
std::deque< vertex > & deque_levels_true
List of vertices sorted by topological order; in the sorting then part vertices come before else part...
boost::graph_traits< graph >::vertex_descriptor vertex
vertex definition.
~level_constructor()
Destructor.
Template definition of refcount.
REF_FORWARD_DECL(level_constructor)
void add(vertex v, unsigned int index)
Add a vertex to the deque and to the map.