equal
deleted
inserted
replaced
63 ///By default it is a BoolEdgeMap. |
63 ///By default it is a BoolEdgeMap. |
64 typedef typename UGraph::template UEdgeMap<bool> TreeMap; |
64 typedef typename UGraph::template UEdgeMap<bool> TreeMap; |
65 ///Instantiates a TreeMap. |
65 ///Instantiates a TreeMap. |
66 |
66 |
67 ///This function instantiates a \ref TreeMap. |
67 ///This function instantiates a \ref TreeMap. |
68 ///\param g is the graph, to which |
68 ///\param _graph is the graph, to which |
69 ///we would like to define the \ref TreeMap |
69 ///we would like to define the \ref TreeMap |
70 static TreeMap *createTreeMap(const GR &_graph){ |
70 static TreeMap *createTreeMap(const GR &_graph){ |
71 return new TreeMap(_graph); |
71 return new TreeMap(_graph); |
72 } |
72 } |
73 }; |
73 }; |