Some changes in the IO and map utilities.
2 * src/lemon/concept/path.h - Part of LEMON, a generic C++ optimization library
4 * Copyright (C) 2004 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
5 * (Egervary Combinatorial Optimization Research Group, EGRES).
7 * Permission to use, modify and distribute this software is granted
8 * provided that this copyright notice appears in all copies. For
9 * precise terms see the accompanying LICENSE file.
11 * This software is provided "AS IS" with no warranty of any kind,
12 * express or implied, and with no claim as to its suitability for any
19 ///\brief Classes for representing paths in graphs.
21 #ifndef LEMON_CONCEPT_PATH_H
22 #define LEMON_CONCEPT_PATH_H
24 #include <lemon/invalid.h>
28 /// \addtogroup concept
32 //! \brief A skeleton structure for representing directed paths in a graph.
34 //! A skeleton structure for representing directed paths in a graph.
35 //! \param GR The graph type in which the path is.
37 //! In a sense, the path can be treated as a graph, for is has \c NodeIt
38 //! and \c EdgeIt with the same usage. These types converts to the \c Node
39 //! and \c Edge of the original graph.
44 /// Type of the underlying graph.
45 typedef /*typename*/ GR Graph;
46 /// Edge type of the underlying graph.
47 typedef typename Graph::Edge GraphEdge;
48 /// Node type of the underlying graph.
49 typedef typename Graph::Node GraphNode;
53 /// \param _G The graph in which the path is.
55 Path(const Graph &_G) {}
57 /// Length of the path.
58 size_t length() const {return 0;}
59 /// Returns whether the path is empty.
60 bool empty() const { return true;}
62 /// Resets the path to an empty path.
65 /// \brief Starting point of the path.
67 /// Starting point of the path.
68 /// Returns INVALID if the path is empty.
69 GraphNode/*It*/ target() const {return INVALID;}
70 /// \brief End point of the path.
72 /// End point of the path.
73 /// Returns INVALID if the path is empty.
74 GraphNode/*It*/ source() const {return INVALID;}
76 /// \brief First NodeIt/EdgeIt.
78 /// Initializes node or edge iterator to point to the first
81 It& first(It &i) const { return i=It(*this); }
83 /// \brief The target of an edge.
85 /// Returns node iterator pointing to the target node of the
86 /// given edge iterator.
87 NodeIt target(const EdgeIt& e) const {return INVALID;}
89 /// \brief The source of an edge.
91 /// Returns node iterator pointing to the source node of the
92 /// given edge iterator.
93 NodeIt source(const EdgeIt& e) const {return INVALID;}
96 /* Iterator classes */
99 * \brief Iterator class to iterate on the edges of the paths
102 * This class is used to iterate on the edges of the paths
104 * Of course it converts to Graph::Edge
109 /// Default constructor
111 /// Invalid constructor
113 /// Constructor with starting point
114 EdgeIt(const Path &_p) {}
116 operator GraphEdge () const {}
119 EdgeIt& operator++() {return *this;}
121 /// Comparison operator
122 bool operator==(const EdgeIt& e) const {return true;}
123 /// Comparison operator
124 bool operator!=(const EdgeIt& e) const {return true;}
125 // /// Comparison operator
126 // /// \todo It is not clear what is the "natural" ordering.
127 // bool operator<(const EdgeIt& e) const {}
132 * \brief Iterator class to iterate on the nodes of the paths
135 * This class is used to iterate on the nodes of the paths
137 * Of course it converts to Graph::Node.
142 /// Default constructor
144 /// Invalid constructor
146 /// Constructor with starting point
147 NodeIt(const Path &_p) {}
149 ///Conversion to Graph::Node
150 operator const GraphNode& () const {}
152 NodeIt& operator++() {return *this;}
154 /// Comparison operator
155 bool operator==(const NodeIt& e) const {return true;}
156 /// Comparison operator
157 bool operator!=(const NodeIt& e) const {return true;}
158 // /// Comparison operator
159 // /// \todo It is not clear what is the "natural" ordering.
160 // bool operator<(const NodeIt& e) const {}
164 friend class Builder;
167 * \brief Class to build paths
170 * This class is used to fill a path with edges.
172 * You can push new edges to the front and to the back of the path in
173 * arbitrary order then you should commit these changes to the graph.
175 * While the builder is active (after the first modifying
176 * operation and until the call of \ref commit())
177 * the underlining Path is in a
178 * "transitional" state (operations on it have undefined result).
185 ///\param _P the path you want to fill in.
187 Builder(Path &_P) : P(_P) {}
189 /// Sets the starting node of the path.
191 /// Sets the starting node of the path. Edge added to the path
192 /// afterwards have to be incident to this node.
193 /// You \em must start building an empry path with this functions.
194 /// (And you \em must \em not use it later).
197 void setStartNode(const GraphNode &) {}
199 ///Push a new edge to the front of the path
201 ///Push a new edge to the front of the path.
202 ///If the path is empty, you \em must call \ref setStartNode() before
203 ///the first use of \ref pushFront().
204 void pushFront(const GraphEdge& e) {}
206 ///Push a new edge to the back of the path
208 ///Push a new edge to the back of the path.
209 ///If the path is empty, you \em must call \ref setStartNode() before
210 ///the first use of \ref pushBack().
211 void pushBack(const GraphEdge& e) {}
213 ///Commit the changes to the path.
216 ///Reserve (front) storage for the builder in advance.
218 ///If you know an reasonable upper bound of the number of the edges
219 ///to add to the front of the path,
220 ///using this function you may speed up the building.
221 void reserveFront(size_t r) {}
222 ///Reserve (back) storage for the builder in advance.
224 ///If you know an reasonable upper bound of the number of the edges
225 ///to add to the back of the path,
226 ///using this function you may speed up the building.
227 void reserveBack(size_t r) {}
236 #endif // LEMON_CONCEPT_PATH_H