lemon/dag_shortest_path.h
changeset 1999 2ff283124dfc
parent 1993 2115143eceea
child 2111 ea1fa1bc3f6d
equal deleted inserted replaced
3:b925fc9c49c8 4:ae74b71e4be7
   327     /// \brief The type of the map that stores the dists of the nodes.
   327     /// \brief The type of the map that stores the dists of the nodes.
   328     typedef typename _Traits::DistMap DistMap;
   328     typedef typename _Traits::DistMap DistMap;
   329     /// \brief The operation traits.
   329     /// \brief The operation traits.
   330     typedef typename _Traits::OperationTraits OperationTraits;
   330     typedef typename _Traits::OperationTraits OperationTraits;
   331     /// \brief The Node weight map.
   331     /// \brief The Node weight map.
   332     typedef typename Graph::NodeMap<Value> WeightMap;
   332     typedef typename Graph::template NodeMap<Value> WeightMap;
   333   private:
   333   private:
   334     /// Pointer to the underlying graph
   334     /// Pointer to the underlying graph
   335     const Graph *graph;
   335     const Graph *graph;
   336     /// Pointer to the length map
   336     /// Pointer to the length map
   337     const LengthMap *length;
   337     const LengthMap *length;