COIN-OR::LEMON - Graph Library

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/concepts/path.h

    r559 r529  
    3939    /// A skeleton structure for representing directed paths in a
    4040    /// digraph.
    41     /// \tparam GR The digraph type in which the path is.
     41    /// \tparam _Digraph The digraph type in which the path is.
    4242    ///
    4343    /// In a sense, the path can be treated as a list of arcs. The
     
    4646    /// paths cannot store the source.
    4747    ///
    48     template <typename GR>
     48    template <typename _Digraph>
    4949    class Path {
    5050    public:
    5151
    5252      /// Type of the underlying digraph.
    53       typedef GR Digraph;
     53      typedef _Digraph Digraph;
    5454      /// Arc type of the underlying digraph.
    5555      typedef typename Digraph::Arc Arc;
     
    206206    /// assigned to a real path and the dumpers can be implemented as
    207207    /// an adaptor class to the predecessor map.
    208     ///
    209     /// \tparam GR The digraph type in which the path is.
     208
     209    /// \tparam _Digraph The digraph type in which the path is.
    210210    ///
    211211    /// The paths can be constructed from any path type by a
    212212    /// template constructor or a template assignment operator.
    213     template <typename GR>
     213    ///
     214    template <typename _Digraph>
    214215    class PathDumper {
    215216    public:
    216217
    217218      /// Type of the underlying digraph.
    218       typedef GR Digraph;
     219      typedef _Digraph Digraph;
    219220      /// Arc type of the underlying digraph.
    220221      typedef typename Digraph::Arc Arc;
Note: See TracChangeset for help on using the changeset viewer.