lemon/fredman_tarjan.h
changeset 1980 a954b780e3ab
parent 1956 a055123339d5
child 1993 2115143eceea
equal deleted inserted replaced
3:4f8ec15011a1 4:118dea96c6b0
   502   void fredmanTarjan(const Graph& graph, const CostMap& cost,TreeMap& tree){
   502   void fredmanTarjan(const Graph& graph, const CostMap& cost,TreeMap& tree){
   503     typename FredmanTarjan<Graph,CostMap>::template DefTreeMap<TreeMap>::
   503     typename FredmanTarjan<Graph,CostMap>::template DefTreeMap<TreeMap>::
   504       Create ft(graph,cost);
   504       Create ft(graph,cost);
   505     ft.treeMap(tree);
   505     ft.treeMap(tree);
   506     ft.run();
   506     ft.run();
   507   };
   507   }
   508 
   508 
   509 } //END OF NAMESPACE LEMON
   509 } //END OF NAMESPACE LEMON
   510 
   510 
   511 #endif
   511 #endif