lemon/fredman_tarjan.h
changeset 1950 a1a6f5b788bd
parent 1912 d9205a711324
child 1953 d4f411003580
equal deleted inserted replaced
0:c943bc590917 1:9d49aa01a67e
    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   };