Release series 1.1.x has reached its end of life.
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 Classes for representing paths in digraphs.
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 /// \tparam GR The digraph type in which the path is.
43 /// In a sense, the path can be treated as a list of arcs. The
44 /// lemon path type stores just this list. As a consequence it
45 /// cannot enumerate the nodes in the path and the zero length
46 /// paths cannot store the source.
48 template <typename GR>
52 /// Type of the underlying digraph.
54 /// Arc type of the underlying digraph.
55 typedef typename Digraph::Arc Arc;
59 /// \brief Default constructor
62 /// \brief Template constructor
63 template <typename CPath>
64 Path(const CPath& cpath) {}
66 /// \brief Template assigment
67 template <typename CPath>
68 Path& operator=(const CPath& cpath) {
69 ::lemon::ignore_unused_variable_warning(cpath);
73 /// Length of the path ie. the number of arcs in the path.
74 int length() const { return 0;}
76 /// Returns whether the path is empty.
77 bool empty() const { return true;}
79 /// Resets the path to an empty path.
82 /// \brief LEMON style iterator for path arcs
84 /// This class is used to iterate on the arcs of the paths.
87 /// Default constructor
89 /// Invalid constructor
91 /// Constructor for first arc
92 ArcIt(const Path &) {}
95 operator Arc() const { return INVALID; }
98 ArcIt& operator++() {return *this;}
100 /// Comparison operator
101 bool operator==(const ArcIt&) const {return true;}
102 /// Comparison operator
103 bool operator!=(const ArcIt&) const {return true;}
104 /// Comparison operator
105 bool operator<(const ArcIt&) const {return false;}
109 template <typename _Path>
120 typename _Path::ArcIt id, ii(INVALID), i(p);
123 typename Digraph::Arc ed = i;
129 ::lemon::ignore_unused_variable_warning(l);
130 ::lemon::ignore_unused_variable_warning(pp);
131 ::lemon::ignore_unused_variable_warning(e);
132 ::lemon::ignore_unused_variable_warning(id);
133 ::lemon::ignore_unused_variable_warning(ii);
134 ::lemon::ignore_unused_variable_warning(ed);
140 namespace _path_bits {
142 template <typename _Digraph, typename _Path, typename RevPathTag = void>
143 struct PathDumperConstraints {
148 typename _Path::ArcIt id, i(p);
151 typename _Digraph::Arc ed = i;
156 ::lemon::ignore_unused_variable_warning(l);
157 ::lemon::ignore_unused_variable_warning(e);
158 ::lemon::ignore_unused_variable_warning(id);
159 ::lemon::ignore_unused_variable_warning(ed);
162 PathDumperConstraints() {}
165 template <typename _Digraph, typename _Path>
166 struct PathDumperConstraints<
168 typename enable_if<typename _Path::RevPathTag, void>::type
174 typename _Path::RevArcIt id, i(p);
177 typename _Digraph::Arc ed = i;
182 ::lemon::ignore_unused_variable_warning(l);
183 ::lemon::ignore_unused_variable_warning(e);
184 ::lemon::ignore_unused_variable_warning(id);
185 ::lemon::ignore_unused_variable_warning(ed);
188 PathDumperConstraints() {}
194 /// \brief A skeleton structure for path dumpers.
196 /// A skeleton structure for path dumpers. The path dumpers are
197 /// the generalization of the paths. The path dumpers can
198 /// enumerate the arcs of the path wheter in forward or in
199 /// backward order. In most time these classes are not used
200 /// directly rather it used to assign a dumped class to a real
203 /// The main purpose of this concept is that the shortest path
204 /// algorithms can enumerate easily the arcs in reverse order.
205 /// If we would like to give back a real path from these
206 /// algorithms then we should create a temporarly path object. In
207 /// LEMON such algorithms gives back a path dumper what can
208 /// assigned to a real path and the dumpers can be implemented as
209 /// an adaptor class to the predecessor map.
211 /// \tparam GR The digraph type in which the path is.
213 /// The paths can be constructed from any path type by a
214 /// template constructor or a template assignment operator.
215 template <typename GR>
219 /// Type of the underlying digraph.
221 /// Arc type of the underlying digraph.
222 typedef typename Digraph::Arc Arc;
224 /// Length of the path ie. the number of arcs in the path.
225 int length() const { return 0;}
227 /// Returns whether the path is empty.
228 bool empty() const { return true;}
230 /// \brief Forward or reverse dumping
232 /// If the RevPathTag is defined and true then reverse dumping
233 /// is provided in the path dumper. In this case instead of the
234 /// ArcIt the RevArcIt iterator should be implemented in the
236 typedef False RevPathTag;
238 /// \brief LEMON style iterator for path arcs
240 /// This class is used to iterate on the arcs of the paths.
243 /// Default constructor
245 /// Invalid constructor
247 /// Constructor for first arc
248 ArcIt(const PathDumper&) {}
250 /// Conversion to 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 path arcs
267 /// This class is used to iterate on the arcs of the paths in
268 /// reverse direction.
271 /// Default constructor
273 /// Invalid constructor
275 /// Constructor for first arc
276 RevArcIt(const PathDumper &) {}
278 /// Conversion to Arc
279 operator Arc() const { return INVALID; }
282 RevArcIt& operator++() {return *this;}
284 /// Comparison operator
285 bool operator==(const RevArcIt&) const {return true;}
286 /// Comparison operator
287 bool operator!=(const RevArcIt&) const {return true;}
288 /// Comparison operator
289 bool operator<(const RevArcIt&) const {return false;}
293 template <typename _Path>
296 function_requires<_path_bits::
297 PathDumperConstraints<Digraph, _Path> >();