COIN-OR::LEMON - Graph Library

Changeset 693:80164e89dcbc in lemon-0.x for src/hugo/dijkstra.h


Ignore:
Timestamp:
07/06/04 11:52:04 (20 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@943
Message:

Fix some typos in docs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/hugo/dijkstra.h

    r689 r693  
    3939  ///
    4040  ///\author Jacint Szabo and Alpar Juttner
    41   ///\todo We need a typedef-names should be standardized.
     41  ///\todo We need a typedef-names should be standardized. (-:
    4242
    4343#ifdef DOXYGEN
     
    6161    ///The type of the length of the edges.
    6262    typedef typename LM::ValueType ValueType;
    63     ///The the type of the map that stores the edge lengths.
     63    ///The type of the map that stores the edge lengths.
    6464    typedef LM LengthMap;
    65     ///\brief The the type of the map that stores the last
     65    ///\brief The type of the map that stores the last
    6666    ///edges of the shortest paths.
    6767    typedef typename Graph::template NodeMap<Edge> PredMap;
    68     ///\brief The the type of the map that stores the last but one
     68    ///\brief The type of the map that stores the last but one
    6969    ///nodes of the shortest paths.
    7070    typedef typename Graph::template NodeMap<Node> PredNodeMap;
    71     ///The the type of the map that stores the dists of the nodes.
     71    ///The type of the map that stores the dists of the nodes.
    7272    typedef typename Graph::template NodeMap<ValueType> DistMap;
    7373
Note: See TracChangeset for help on using the changeset viewer.