COIN-OR::LEMON - Graph Library

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/concepts/path.h

    r220 r281  
    2121///\brief Classes for representing paths in digraphs.
    2222///
    23 ///\todo Iterators have obsolete style
    2423
    2524#ifndef LEMON_CONCEPT_PATH_H
     
    6766      /// \brief Template assigment
    6867      template <typename CPath>
    69       Path& operator=(const CPath& cpath) {}
     68      Path& operator=(const CPath& cpath) {
     69        ignore_unused_variable_warning(cpath);
     70        return *this;
     71      }
    7072
    7173      /// Length of the path ie. the number of arcs in the path.
     
    7880      void clear() {}
    7981
    80       /// \brief Lemon style iterator for path arcs
     82      /// \brief LEMON style iterator for path arcs
    8183      ///
    8284      /// This class is used to iterate on the arcs of the paths.
     
    201203    /// If we would like to give back a real path from these
    202204    /// algorithms then we should create a temporarly path object. In
    203     /// Lemon such algorithms gives back a path dumper what can
     205    /// LEMON such algorithms gives back a path dumper what can
    204206    /// assigned to a real path and the dumpers can be implemented as
    205207    /// an adaptor class to the predecessor map.
     
    233235      typedef False RevPathTag;
    234236
    235       /// \brief Lemon style iterator for path arcs
     237      /// \brief LEMON style iterator for path arcs
    236238      ///
    237239      /// This class is used to iterate on the arcs of the paths.
     
    260262      };
    261263
    262       /// \brief Lemon style iterator for path arcs
     264      /// \brief LEMON style iterator for path arcs
    263265      ///
    264266      /// This class is used to iterate on the arcs of the paths in
Note: See TracChangeset for help on using the changeset viewer.