COIN-OR::LEMON - Graph Library

Changeset 2260:4274224f8a7d in lemon-0.x for lemon/floyd_warshall.h


Ignore:
Timestamp:
10/24/06 19:19:16 (18 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3016
Message:

concept -> concepts (namespace & directory)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/floyd_warshall.h

    r2184 r2260  
    9595    ///
    9696    /// The type of the map that stores the edge lengths.
    97     /// It must meet the \ref concept::ReadMap "ReadMap" concept.
     97    /// It must meet the \ref concepts::ReadMap "ReadMap" concept.
    9898    typedef _LengthMap LengthMap;
    9999
     
    130130    ///
    131131    /// The type of the map that stores the dists of the nodes.
    132     /// It must meet the \ref concept::WriteMatrixMap "WriteMatrixMap" concept.
     132    /// It must meet the \ref concepts::WriteMatrixMap "WriteMatrixMap" concept.
    133133    ///
    134134    typedef DynamicMatrixMap<Graph, typename Graph::Node, Value> DistMap;
     
    150150  /// This class provides an efficient implementation of \c Floyd-Warshall
    151151  /// algorithm. The edge lengths are passed to the algorithm using a
    152   /// \ref concept::ReadMap "ReadMap", so it is easy to change it to any
     152  /// \ref concepts::ReadMap "ReadMap", so it is easy to change it to any
    153153  /// kind of length.
    154154  ///
     
    163163  ///
    164164  /// The type of the length is determined by the
    165   /// \ref concept::ReadMap::Value "Value" of the length map.
     165  /// \ref concepts::ReadMap::Value "Value" of the length map.
    166166  ///
    167167  /// \param _Graph The graph type the algorithm runs on. The default value
     
    172172  /// relatively time consuming process to compute the edge length if
    173173  /// it is necessary. The default map type is \ref
    174   /// concept::Graph::EdgeMap "Graph::EdgeMap<int>".  The value
     174  /// concepts::Graph::EdgeMap "Graph::EdgeMap<int>".  The value
    175175  /// of _LengthMap is not used directly by FloydWarshall, it is only passed
    176176  /// to \ref FloydWarshallDefaultTraits.  \param _Traits Traits class to set
Note: See TracChangeset for help on using the changeset viewer.