1 /* -*- mode: C++; indent-tabs-mode: nil; -*-
 
     3  * This file is a part of LEMON, a generic C++ optimization library.
 
     5  * Copyright (C) 2003-2009
 
     6  * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
 
     7  * (Egervary Research Group on Combinatorial Optimization, EGRES).
 
     9  * Permission to use, modify and distribute this software is granted
 
    10  * provided that this copyright notice appears in all copies. For
 
    11  * precise terms see the accompanying LICENSE file.
 
    13  * This software is provided "AS IS" with no warranty of any kind,
 
    14  * express or implied, and with no claim as to its suitability for any
 
    21 ///\brief The concept of paths
 
    24 #ifndef LEMON_CONCEPTS_PATH_H
 
    25 #define LEMON_CONCEPTS_PATH_H
 
    27 #include <lemon/core.h>
 
    28 #include <lemon/concept_check.h>
 
    33     /// \addtogroup concept
 
    36     /// \brief A skeleton structure for representing directed paths in
 
    39     /// A skeleton structure for representing directed paths in a
 
    41     /// In a sense, a path can be treated as a list of arcs.
 
    42     /// LEMON path types just store this list. As a consequence, they cannot
 
    43     /// enumerate the nodes on the path directly and a zero length path
 
    44     /// cannot store its source node.
 
    46     /// The arcs of a path should be stored in the order of their directions,
 
    47     /// i.e. the target node of each arc should be the same as the source
 
    48     /// node of the next arc. This consistency could be checked using
 
    50     /// The source and target nodes of a (consistent) path can be obtained
 
    51     /// using \ref pathSource() and \ref pathTarget().
 
    53     /// A path can be constructed from another path of any type using the
 
    54     /// copy constructor or the assignment operator.
 
    56     /// \tparam GR The digraph type in which the path is.
 
    57     template <typename GR>
 
    61       /// Type of the underlying digraph.
 
    63       /// Arc type of the underlying digraph.
 
    64       typedef typename Digraph::Arc Arc;
 
    68       /// \brief Default constructor
 
    71       /// \brief Template copy constructor
 
    72       template <typename CPath>
 
    73       Path(const CPath& cpath) {}
 
    75       /// \brief Template assigment operator
 
    76       template <typename CPath>
 
    77       Path& operator=(const CPath& cpath) {
 
    78         ignore_unused_variable_warning(cpath);
 
    82       /// Length of the path, i.e. the number of arcs on the path.
 
    83       int length() const { return 0;}
 
    85       /// Returns whether the path is empty.
 
    86       bool empty() const { return true;}
 
    88       /// Resets the path to an empty path.
 
    91       /// \brief LEMON style iterator for enumerating the arcs of a path.
 
    93       /// LEMON style iterator class for enumerating the arcs of a path.
 
    96         /// Default constructor
 
    98         /// Invalid constructor
 
   100         /// Sets the iterator to the first arc of the given path
 
   101         ArcIt(const Path &) {}
 
   103         /// Conversion to \c Arc
 
   104         operator Arc() const { return INVALID; }
 
   107         ArcIt& operator++() {return *this;}
 
   109         /// Comparison operator
 
   110         bool operator==(const ArcIt&) const {return true;}
 
   111         /// Comparison operator
 
   112         bool operator!=(const ArcIt&) const {return true;}
 
   113         /// Comparison operator
 
   114         bool operator<(const ArcIt&) const {return false;}
 
   118       template <typename _Path>
 
   129           typename _Path::ArcIt id, ii(INVALID), i(p);
 
   132           typename Digraph::Arc ed = i;
 
   138           ignore_unused_variable_warning(l);
 
   139           ignore_unused_variable_warning(pp);
 
   140           ignore_unused_variable_warning(e);
 
   141           ignore_unused_variable_warning(id);
 
   142           ignore_unused_variable_warning(ii);
 
   143           ignore_unused_variable_warning(ed);
 
   149     namespace _path_bits {
 
   151       template <typename _Digraph, typename _Path, typename RevPathTag = void>
 
   152       struct PathDumperConstraints {
 
   157           typename _Path::ArcIt id, i(p);
 
   160           typename _Digraph::Arc ed = i;
 
   165           ignore_unused_variable_warning(l);
 
   166           ignore_unused_variable_warning(e);
 
   167           ignore_unused_variable_warning(id);
 
   168           ignore_unused_variable_warning(ed);
 
   173       template <typename _Digraph, typename _Path>
 
   174       struct PathDumperConstraints<
 
   176         typename enable_if<typename _Path::RevPathTag, void>::type
 
   182           typename _Path::RevArcIt id, i(p);
 
   185           typename _Digraph::Arc ed = i;
 
   190           ignore_unused_variable_warning(l);
 
   191           ignore_unused_variable_warning(e);
 
   192           ignore_unused_variable_warning(id);
 
   193           ignore_unused_variable_warning(ed);
 
   201     /// \brief A skeleton structure for path dumpers.
 
   203     /// A skeleton structure for path dumpers. The path dumpers are
 
   204     /// the generalization of the paths, they can enumerate the arcs
 
   205     /// of the path either in forward or in backward order.
 
   206     /// These classes are typically not used directly, they are rather
 
   207     /// used to be assigned to a real path type.
 
   209     /// The main purpose of this concept is that the shortest path
 
   210     /// algorithms can enumerate the arcs easily in reverse order.
 
   211     /// In LEMON, such algorithms give back a (reverse) path dumper that
 
   212     /// can be assigned to a real path. The dumpers can be implemented as
 
   213     /// an adaptor class to the predecessor map.
 
   215     /// \tparam GR The digraph type in which the path is.
 
   216     template <typename GR>
 
   220       /// Type of the underlying digraph.
 
   222       /// Arc type of the underlying digraph.
 
   223       typedef typename Digraph::Arc Arc;
 
   225       /// Length of the path, i.e. the number of arcs on the path.
 
   226       int length() const { return 0;}
 
   228       /// Returns whether the path is empty.
 
   229       bool empty() const { return true;}
 
   231       /// \brief Forward or reverse dumping
 
   233       /// If this tag is defined to be \c True, then reverse dumping
 
   234       /// is provided in the path dumper. In this case, \c RevArcIt
 
   235       /// iterator should be implemented instead of \c ArcIt iterator.
 
   236       typedef False RevPathTag;
 
   238       /// \brief LEMON style iterator for enumerating the arcs of a path.
 
   240       /// LEMON style iterator class for enumerating the arcs of a path.
 
   243         /// Default constructor
 
   245         /// Invalid constructor
 
   247         /// Sets the iterator to the first arc of the given path
 
   248         ArcIt(const PathDumper&) {}
 
   250         /// Conversion to \c Arc
 
   251         operator Arc() const { return INVALID; }
 
   254         ArcIt& operator++() {return *this;}
 
   256         /// Comparison operator
 
   257         bool operator==(const ArcIt&) const {return true;}
 
   258         /// Comparison operator
 
   259         bool operator!=(const ArcIt&) const {return true;}
 
   260         /// Comparison operator
 
   261         bool operator<(const ArcIt&) const {return false;}
 
   265       /// \brief LEMON style iterator for enumerating the arcs of a path
 
   266       /// in reverse direction.
 
   268       /// LEMON style iterator class for enumerating the arcs of a path
 
   269       /// in reverse direction.
 
   272         /// Default constructor
 
   274         /// Invalid constructor
 
   276         /// Sets the iterator to the last arc of the given path
 
   277         RevArcIt(const PathDumper &) {}
 
   279         /// Conversion to \c Arc
 
   280         operator Arc() const { return INVALID; }
 
   283         RevArcIt& operator++() {return *this;}
 
   285         /// Comparison operator
 
   286         bool operator==(const RevArcIt&) const {return true;}
 
   287         /// Comparison operator
 
   288         bool operator!=(const RevArcIt&) const {return true;}
 
   289         /// Comparison operator
 
   290         bool operator<(const RevArcIt&) const {return false;}
 
   294       template <typename _Path>
 
   297           function_requires<_path_bits::
 
   298             PathDumperConstraints<Digraph, _Path> >();