lemongraph 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (161) hide show
  1. checksums.yaml +7 -0
  2. data/.yardopts +8 -0
  3. data/LICENSE +674 -0
  4. data/README.md +6 -0
  5. data/ext/lemon-1.3.1/AUTHORS +26 -0
  6. data/ext/lemon-1.3.1/CMakeLists.txt +371 -0
  7. data/ext/lemon-1.3.1/INSTALL +167 -0
  8. data/ext/lemon-1.3.1/LICENSE +32 -0
  9. data/ext/lemon-1.3.1/NEWS +337 -0
  10. data/ext/lemon-1.3.1/README +50 -0
  11. data/ext/lemon-1.3.1/cmake/FindCOIN.cmake +110 -0
  12. data/ext/lemon-1.3.1/cmake/FindGLPK.cmake +55 -0
  13. data/ext/lemon-1.3.1/cmake/FindGhostscript.cmake +10 -0
  14. data/ext/lemon-1.3.1/cmake/FindILOG.cmake +102 -0
  15. data/ext/lemon-1.3.1/cmake/FindSOPLEX.cmake +23 -0
  16. data/ext/lemon-1.3.1/cmake/LEMONConfig.cmake.in +13 -0
  17. data/ext/lemon-1.3.1/cmake/nsis/lemon.ico +0 -0
  18. data/ext/lemon-1.3.1/cmake/nsis/uninstall.ico +0 -0
  19. data/ext/lemon-1.3.1/cmake/version.cmake +1 -0
  20. data/ext/lemon-1.3.1/cmake/version.cmake.in +1 -0
  21. data/ext/lemon-1.3.1/contrib/CMakeLists.txt +19 -0
  22. data/ext/lemon-1.3.1/lemon/CMakeLists.txt +91 -0
  23. data/ext/lemon-1.3.1/lemon/adaptors.h +3638 -0
  24. data/ext/lemon-1.3.1/lemon/arg_parser.cc +474 -0
  25. data/ext/lemon-1.3.1/lemon/arg_parser.h +440 -0
  26. data/ext/lemon-1.3.1/lemon/assert.h +214 -0
  27. data/ext/lemon-1.3.1/lemon/base.cc +37 -0
  28. data/ext/lemon-1.3.1/lemon/bellman_ford.h +1116 -0
  29. data/ext/lemon-1.3.1/lemon/bfs.h +1754 -0
  30. data/ext/lemon-1.3.1/lemon/bin_heap.h +347 -0
  31. data/ext/lemon-1.3.1/lemon/binomial_heap.h +445 -0
  32. data/ext/lemon-1.3.1/lemon/bits/alteration_notifier.h +472 -0
  33. data/ext/lemon-1.3.1/lemon/bits/array_map.h +351 -0
  34. data/ext/lemon-1.3.1/lemon/bits/bezier.h +174 -0
  35. data/ext/lemon-1.3.1/lemon/bits/default_map.h +182 -0
  36. data/ext/lemon-1.3.1/lemon/bits/edge_set_extender.h +627 -0
  37. data/ext/lemon-1.3.1/lemon/bits/enable_if.h +131 -0
  38. data/ext/lemon-1.3.1/lemon/bits/graph_adaptor_extender.h +401 -0
  39. data/ext/lemon-1.3.1/lemon/bits/graph_extender.h +1332 -0
  40. data/ext/lemon-1.3.1/lemon/bits/lock.h +65 -0
  41. data/ext/lemon-1.3.1/lemon/bits/map_extender.h +332 -0
  42. data/ext/lemon-1.3.1/lemon/bits/path_dump.h +177 -0
  43. data/ext/lemon-1.3.1/lemon/bits/solver_bits.h +194 -0
  44. data/ext/lemon-1.3.1/lemon/bits/traits.h +388 -0
  45. data/ext/lemon-1.3.1/lemon/bits/variant.h +494 -0
  46. data/ext/lemon-1.3.1/lemon/bits/vector_map.h +244 -0
  47. data/ext/lemon-1.3.1/lemon/bits/windows.cc +166 -0
  48. data/ext/lemon-1.3.1/lemon/bits/windows.h +44 -0
  49. data/ext/lemon-1.3.1/lemon/bucket_heap.h +594 -0
  50. data/ext/lemon-1.3.1/lemon/capacity_scaling.h +1014 -0
  51. data/ext/lemon-1.3.1/lemon/cbc.cc +460 -0
  52. data/ext/lemon-1.3.1/lemon/cbc.h +129 -0
  53. data/ext/lemon-1.3.1/lemon/christofides_tsp.h +254 -0
  54. data/ext/lemon-1.3.1/lemon/circulation.h +807 -0
  55. data/ext/lemon-1.3.1/lemon/clp.cc +464 -0
  56. data/ext/lemon-1.3.1/lemon/clp.h +164 -0
  57. data/ext/lemon-1.3.1/lemon/color.cc +44 -0
  58. data/ext/lemon-1.3.1/lemon/color.h +204 -0
  59. data/ext/lemon-1.3.1/lemon/concept_check.h +77 -0
  60. data/ext/lemon-1.3.1/lemon/concepts/bpgraph.h +1029 -0
  61. data/ext/lemon-1.3.1/lemon/concepts/digraph.h +491 -0
  62. data/ext/lemon-1.3.1/lemon/concepts/graph.h +788 -0
  63. data/ext/lemon-1.3.1/lemon/concepts/graph_components.h +2134 -0
  64. data/ext/lemon-1.3.1/lemon/concepts/heap.h +324 -0
  65. data/ext/lemon-1.3.1/lemon/concepts/maps.h +223 -0
  66. data/ext/lemon-1.3.1/lemon/concepts/path.h +312 -0
  67. data/ext/lemon-1.3.1/lemon/config.h.in +22 -0
  68. data/ext/lemon-1.3.1/lemon/connectivity.h +1688 -0
  69. data/ext/lemon-1.3.1/lemon/core.h +2506 -0
  70. data/ext/lemon-1.3.1/lemon/cost_scaling.h +1607 -0
  71. data/ext/lemon-1.3.1/lemon/counter.h +249 -0
  72. data/ext/lemon-1.3.1/lemon/cplex.cc +994 -0
  73. data/ext/lemon-1.3.1/lemon/cplex.h +292 -0
  74. data/ext/lemon-1.3.1/lemon/cycle_canceling.h +1230 -0
  75. data/ext/lemon-1.3.1/lemon/dfs.h +1637 -0
  76. data/ext/lemon-1.3.1/lemon/dheap.h +352 -0
  77. data/ext/lemon-1.3.1/lemon/dijkstra.h +1303 -0
  78. data/ext/lemon-1.3.1/lemon/dim2.h +726 -0
  79. data/ext/lemon-1.3.1/lemon/dimacs.h +448 -0
  80. data/ext/lemon-1.3.1/lemon/edge_set.h +1420 -0
  81. data/ext/lemon-1.3.1/lemon/edmonds_karp.h +556 -0
  82. data/ext/lemon-1.3.1/lemon/elevator.h +982 -0
  83. data/ext/lemon-1.3.1/lemon/error.h +276 -0
  84. data/ext/lemon-1.3.1/lemon/euler.h +287 -0
  85. data/ext/lemon-1.3.1/lemon/fib_heap.h +475 -0
  86. data/ext/lemon-1.3.1/lemon/fractional_matching.h +2139 -0
  87. data/ext/lemon-1.3.1/lemon/full_graph.h +1082 -0
  88. data/ext/lemon-1.3.1/lemon/glpk.cc +1012 -0
  89. data/ext/lemon-1.3.1/lemon/glpk.h +263 -0
  90. data/ext/lemon-1.3.1/lemon/gomory_hu.h +568 -0
  91. data/ext/lemon-1.3.1/lemon/graph_to_eps.h +1186 -0
  92. data/ext/lemon-1.3.1/lemon/greedy_tsp.h +251 -0
  93. data/ext/lemon-1.3.1/lemon/grid_graph.h +699 -0
  94. data/ext/lemon-1.3.1/lemon/grosso_locatelli_pullan_mc.h +840 -0
  95. data/ext/lemon-1.3.1/lemon/hao_orlin.h +1015 -0
  96. data/ext/lemon-1.3.1/lemon/hartmann_orlin_mmc.h +654 -0
  97. data/ext/lemon-1.3.1/lemon/howard_mmc.h +651 -0
  98. data/ext/lemon-1.3.1/lemon/hypercube_graph.h +459 -0
  99. data/ext/lemon-1.3.1/lemon/insertion_tsp.h +533 -0
  100. data/ext/lemon-1.3.1/lemon/karp_mmc.h +590 -0
  101. data/ext/lemon-1.3.1/lemon/kruskal.h +324 -0
  102. data/ext/lemon-1.3.1/lemon/lemon.pc.in +10 -0
  103. data/ext/lemon-1.3.1/lemon/lgf_reader.h +3854 -0
  104. data/ext/lemon-1.3.1/lemon/lgf_writer.h +2687 -0
  105. data/ext/lemon-1.3.1/lemon/list_graph.h +2510 -0
  106. data/ext/lemon-1.3.1/lemon/lp.h +95 -0
  107. data/ext/lemon-1.3.1/lemon/lp_base.cc +30 -0
  108. data/ext/lemon-1.3.1/lemon/lp_base.h +2147 -0
  109. data/ext/lemon-1.3.1/lemon/lp_skeleton.cc +143 -0
  110. data/ext/lemon-1.3.1/lemon/lp_skeleton.h +234 -0
  111. data/ext/lemon-1.3.1/lemon/maps.h +4057 -0
  112. data/ext/lemon-1.3.1/lemon/matching.h +3505 -0
  113. data/ext/lemon-1.3.1/lemon/math.h +77 -0
  114. data/ext/lemon-1.3.1/lemon/max_cardinality_search.h +794 -0
  115. data/ext/lemon-1.3.1/lemon/min_cost_arborescence.h +808 -0
  116. data/ext/lemon-1.3.1/lemon/nagamochi_ibaraki.h +702 -0
  117. data/ext/lemon-1.3.1/lemon/nauty_reader.h +113 -0
  118. data/ext/lemon-1.3.1/lemon/nearest_neighbor_tsp.h +238 -0
  119. data/ext/lemon-1.3.1/lemon/network_simplex.h +1659 -0
  120. data/ext/lemon-1.3.1/lemon/opt2_tsp.h +367 -0
  121. data/ext/lemon-1.3.1/lemon/pairing_heap.h +474 -0
  122. data/ext/lemon-1.3.1/lemon/path.h +1164 -0
  123. data/ext/lemon-1.3.1/lemon/planarity.h +2754 -0
  124. data/ext/lemon-1.3.1/lemon/preflow.h +985 -0
  125. data/ext/lemon-1.3.1/lemon/quad_heap.h +343 -0
  126. data/ext/lemon-1.3.1/lemon/radix_heap.h +438 -0
  127. data/ext/lemon-1.3.1/lemon/radix_sort.h +487 -0
  128. data/ext/lemon-1.3.1/lemon/random.cc +29 -0
  129. data/ext/lemon-1.3.1/lemon/random.h +1005 -0
  130. data/ext/lemon-1.3.1/lemon/smart_graph.h +1344 -0
  131. data/ext/lemon-1.3.1/lemon/soplex.cc +465 -0
  132. data/ext/lemon-1.3.1/lemon/soplex.h +158 -0
  133. data/ext/lemon-1.3.1/lemon/static_graph.h +476 -0
  134. data/ext/lemon-1.3.1/lemon/suurballe.h +776 -0
  135. data/ext/lemon-1.3.1/lemon/time_measure.h +610 -0
  136. data/ext/lemon-1.3.1/lemon/tolerance.h +242 -0
  137. data/ext/lemon-1.3.1/lemon/unionfind.h +1824 -0
  138. data/ext/lemon-1.3.1/scripts/unify-sources.sh +390 -0
  139. data/ext/lemon-1.3.1/scripts/valgrind-wrapper.sh +22 -0
  140. data/ext/lemongraph/arc_map.cc +1007 -0
  141. data/ext/lemongraph/digraph.cc +282 -0
  142. data/ext/lemongraph/digraph_arc.cc +153 -0
  143. data/ext/lemongraph/digraph_node.cc +277 -0
  144. data/ext/lemongraph/edge_map.cc +770 -0
  145. data/ext/lemongraph/extconf.rb +53 -0
  146. data/ext/lemongraph/graph.cc +351 -0
  147. data/ext/lemongraph/graph_arc.cc +95 -0
  148. data/ext/lemongraph/graph_edge.cc +153 -0
  149. data/ext/lemongraph/graph_item.cc +76 -0
  150. data/ext/lemongraph/graph_node.cc +321 -0
  151. data/ext/lemongraph/lemongraph.cc +260 -0
  152. data/ext/lemongraph/lemongraph.hh +295 -0
  153. data/ext/lemongraph/lemongraph.map +6 -0
  154. data/ext/lemongraph/lemongraph_export.hh +31 -0
  155. data/ext/lemongraph/node_map.cc +1011 -0
  156. data/lemongraph.gemspec +176 -0
  157. data/lib/lemongraph/graphviz.rb +240 -0
  158. data/lib/lemongraph/version.rb +4 -0
  159. data/lib/lemongraph.rb +21 -0
  160. data/samples/lemondeps.rb +38 -0
  161. metadata +202 -0
@@ -0,0 +1,1029 @@
1
+ /* -*- mode: C++; indent-tabs-mode: nil; -*-
2
+ *
3
+ * This file is a part of LEMON, a generic C++ optimization library.
4
+ *
5
+ * Copyright (C) 2003-2013
6
+ * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
7
+ * (Egervary Research Group on Combinatorial Optimization, EGRES).
8
+ *
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.
12
+ *
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
15
+ * purpose.
16
+ *
17
+ */
18
+
19
+ ///\ingroup graph_concepts
20
+ ///\file
21
+ ///\brief The concept of undirected graphs.
22
+
23
+ #ifndef LEMON_CONCEPTS_BPGRAPH_H
24
+ #define LEMON_CONCEPTS_BPGRAPH_H
25
+
26
+ #include <lemon/concepts/graph_components.h>
27
+ #include <lemon/concepts/maps.h>
28
+ #include <lemon/concept_check.h>
29
+ #include <lemon/core.h>
30
+
31
+ namespace lemon {
32
+ namespace concepts {
33
+
34
+ /// \ingroup graph_concepts
35
+ ///
36
+ /// \brief Class describing the concept of undirected bipartite graphs.
37
+ ///
38
+ /// This class describes the common interface of all undirected
39
+ /// bipartite graphs.
40
+ ///
41
+ /// Like all concept classes, it only provides an interface
42
+ /// without any sensible implementation. So any general algorithm for
43
+ /// undirected bipartite graphs should compile with this class,
44
+ /// but it will not run properly, of course.
45
+ /// An actual graph implementation like \ref ListBpGraph or
46
+ /// \ref SmartBpGraph may have additional functionality.
47
+ ///
48
+ /// The bipartite graphs also fulfill the concept of \ref Graph
49
+ /// "undirected graphs". Bipartite graphs provide a bipartition of
50
+ /// the node set, namely a red and blue set of the nodes. The
51
+ /// nodes can be iterated with the RedNodeIt and BlueNodeIt in the
52
+ /// two node sets. With RedNodeMap and BlueNodeMap values can be
53
+ /// assigned to the nodes in the two sets.
54
+ ///
55
+ /// The edges of the graph cannot connect two nodes of the same
56
+ /// set. The edges inherent orientation is from the red nodes to
57
+ /// the blue nodes.
58
+ ///
59
+ /// \sa Graph
60
+ class BpGraph {
61
+ private:
62
+ /// BpGraphs are \e not copy constructible. Use bpGraphCopy instead.
63
+ BpGraph(const BpGraph&) {}
64
+ /// \brief Assignment of a graph to another one is \e not allowed.
65
+ /// Use bpGraphCopy instead.
66
+ void operator=(const BpGraph&) {}
67
+
68
+ public:
69
+ /// Default constructor.
70
+ BpGraph() {}
71
+
72
+ /// \brief Undirected graphs should be tagged with \c UndirectedTag.
73
+ ///
74
+ /// Undirected graphs should be tagged with \c UndirectedTag.
75
+ ///
76
+ /// This tag helps the \c enable_if technics to make compile time
77
+ /// specializations for undirected graphs.
78
+ typedef True UndirectedTag;
79
+
80
+ /// The node type of the graph
81
+
82
+ /// This class identifies a node of the graph. It also serves
83
+ /// as a base class of the node iterators,
84
+ /// thus they convert to this type.
85
+ class Node {
86
+ public:
87
+ /// Default constructor
88
+
89
+ /// Default constructor.
90
+ /// \warning It sets the object to an undefined value.
91
+ Node() { }
92
+ /// Copy constructor.
93
+
94
+ /// Copy constructor.
95
+ ///
96
+ Node(const Node&) { }
97
+
98
+ /// %Invalid constructor \& conversion.
99
+
100
+ /// Initializes the object to be invalid.
101
+ /// \sa Invalid for more details.
102
+ Node(Invalid) { }
103
+ /// Equality operator
104
+
105
+ /// Equality operator.
106
+ ///
107
+ /// Two iterators are equal if and only if they point to the
108
+ /// same object or both are \c INVALID.
109
+ bool operator==(Node) const { return true; }
110
+
111
+ /// Inequality operator
112
+
113
+ /// Inequality operator.
114
+ bool operator!=(Node) const { return true; }
115
+
116
+ /// Artificial ordering operator.
117
+
118
+ /// Artificial ordering operator.
119
+ ///
120
+ /// \note This operator only has to define some strict ordering of
121
+ /// the items; this order has nothing to do with the iteration
122
+ /// ordering of the items.
123
+ bool operator<(Node) const { return false; }
124
+
125
+ };
126
+
127
+ /// Class to represent red nodes.
128
+
129
+ /// This class represents the red nodes of the graph. It does
130
+ /// not supposed to be used directly, because the nodes can be
131
+ /// represented as Node instances. This class can be used as
132
+ /// template parameter for special map classes.
133
+ class RedNode : public Node {
134
+ public:
135
+ /// Default constructor
136
+
137
+ /// Default constructor.
138
+ /// \warning It sets the object to an undefined value.
139
+ RedNode() { }
140
+ /// Copy constructor.
141
+
142
+ /// Copy constructor.
143
+ ///
144
+ RedNode(const RedNode&) : Node() { }
145
+
146
+ /// %Invalid constructor \& conversion.
147
+
148
+ /// Initializes the object to be invalid.
149
+ /// \sa Invalid for more details.
150
+ RedNode(Invalid) { }
151
+
152
+ };
153
+
154
+ /// Class to represent blue nodes.
155
+
156
+ /// This class represents the blue nodes of the graph. It does
157
+ /// not supposed to be used directly, because the nodes can be
158
+ /// represented as Node instances. This class can be used as
159
+ /// template parameter for special map classes.
160
+ class BlueNode : public Node {
161
+ public:
162
+ /// Default constructor
163
+
164
+ /// Default constructor.
165
+ /// \warning It sets the object to an undefined value.
166
+ BlueNode() { }
167
+ /// Copy constructor.
168
+
169
+ /// Copy constructor.
170
+ ///
171
+ BlueNode(const BlueNode&) : Node() { }
172
+
173
+ /// %Invalid constructor \& conversion.
174
+
175
+ /// Initializes the object to be invalid.
176
+ /// \sa Invalid for more details.
177
+ BlueNode(Invalid) { }
178
+
179
+ };
180
+
181
+ /// Iterator class for the red nodes.
182
+
183
+ /// This iterator goes through each red node of the graph.
184
+ /// Its usage is quite simple, for example, you can count the number
185
+ /// of red nodes in a graph \c g of type \c %BpGraph like this:
186
+ ///\code
187
+ /// int count=0;
188
+ /// for (BpGraph::RedNodeIt n(g); n!=INVALID; ++n) ++count;
189
+ ///\endcode
190
+ class RedNodeIt : public RedNode {
191
+ public:
192
+ /// Default constructor
193
+
194
+ /// Default constructor.
195
+ /// \warning It sets the iterator to an undefined value.
196
+ RedNodeIt() { }
197
+ /// Copy constructor.
198
+
199
+ /// Copy constructor.
200
+ ///
201
+ RedNodeIt(const RedNodeIt& n) : RedNode(n) { }
202
+ /// %Invalid constructor \& conversion.
203
+
204
+ /// Initializes the iterator to be invalid.
205
+ /// \sa Invalid for more details.
206
+ RedNodeIt(Invalid) { }
207
+ /// Sets the iterator to the first red node.
208
+
209
+ /// Sets the iterator to the first red node of the given
210
+ /// digraph.
211
+ explicit RedNodeIt(const BpGraph&) { }
212
+ /// Sets the iterator to the given red node.
213
+
214
+ /// Sets the iterator to the given red node of the given
215
+ /// digraph.
216
+ RedNodeIt(const BpGraph&, const RedNode&) { }
217
+ /// Next node.
218
+
219
+ /// Assign the iterator to the next red node.
220
+ ///
221
+ RedNodeIt& operator++() { return *this; }
222
+ };
223
+
224
+ /// Iterator class for the blue nodes.
225
+
226
+ /// This iterator goes through each blue node of the graph.
227
+ /// Its usage is quite simple, for example, you can count the number
228
+ /// of blue nodes in a graph \c g of type \c %BpGraph like this:
229
+ ///\code
230
+ /// int count=0;
231
+ /// for (BpGraph::BlueNodeIt n(g); n!=INVALID; ++n) ++count;
232
+ ///\endcode
233
+ class BlueNodeIt : public BlueNode {
234
+ public:
235
+ /// Default constructor
236
+
237
+ /// Default constructor.
238
+ /// \warning It sets the iterator to an undefined value.
239
+ BlueNodeIt() { }
240
+ /// Copy constructor.
241
+
242
+ /// Copy constructor.
243
+ ///
244
+ BlueNodeIt(const BlueNodeIt& n) : BlueNode(n) { }
245
+ /// %Invalid constructor \& conversion.
246
+
247
+ /// Initializes the iterator to be invalid.
248
+ /// \sa Invalid for more details.
249
+ BlueNodeIt(Invalid) { }
250
+ /// Sets the iterator to the first blue node.
251
+
252
+ /// Sets the iterator to the first blue node of the given
253
+ /// digraph.
254
+ explicit BlueNodeIt(const BpGraph&) { }
255
+ /// Sets the iterator to the given blue node.
256
+
257
+ /// Sets the iterator to the given blue node of the given
258
+ /// digraph.
259
+ BlueNodeIt(const BpGraph&, const BlueNode&) { }
260
+ /// Next node.
261
+
262
+ /// Assign the iterator to the next blue node.
263
+ ///
264
+ BlueNodeIt& operator++() { return *this; }
265
+ };
266
+
267
+ /// Iterator class for the nodes.
268
+
269
+ /// This iterator goes through each node of the graph.
270
+ /// Its usage is quite simple, for example, you can count the number
271
+ /// of nodes in a graph \c g of type \c %BpGraph like this:
272
+ ///\code
273
+ /// int count=0;
274
+ /// for (BpGraph::NodeIt n(g); n!=INVALID; ++n) ++count;
275
+ ///\endcode
276
+ class NodeIt : public Node {
277
+ public:
278
+ /// Default constructor
279
+
280
+ /// Default constructor.
281
+ /// \warning It sets the iterator to an undefined value.
282
+ NodeIt() { }
283
+ /// Copy constructor.
284
+
285
+ /// Copy constructor.
286
+ ///
287
+ NodeIt(const NodeIt& n) : Node(n) { }
288
+ /// %Invalid constructor \& conversion.
289
+
290
+ /// Initializes the iterator to be invalid.
291
+ /// \sa Invalid for more details.
292
+ NodeIt(Invalid) { }
293
+ /// Sets the iterator to the first node.
294
+
295
+ /// Sets the iterator to the first node of the given digraph.
296
+ ///
297
+ explicit NodeIt(const BpGraph&) { }
298
+ /// Sets the iterator to the given node.
299
+
300
+ /// Sets the iterator to the given node of the given digraph.
301
+ ///
302
+ NodeIt(const BpGraph&, const Node&) { }
303
+ /// Next node.
304
+
305
+ /// Assign the iterator to the next node.
306
+ ///
307
+ NodeIt& operator++() { return *this; }
308
+ };
309
+
310
+
311
+ /// The edge type of the graph
312
+
313
+ /// This class identifies an edge of the graph. It also serves
314
+ /// as a base class of the edge iterators,
315
+ /// thus they will convert to this type.
316
+ class Edge {
317
+ public:
318
+ /// Default constructor
319
+
320
+ /// Default constructor.
321
+ /// \warning It sets the object to an undefined value.
322
+ Edge() { }
323
+ /// Copy constructor.
324
+
325
+ /// Copy constructor.
326
+ ///
327
+ Edge(const Edge&) { }
328
+ /// %Invalid constructor \& conversion.
329
+
330
+ /// Initializes the object to be invalid.
331
+ /// \sa Invalid for more details.
332
+ Edge(Invalid) { }
333
+ /// Equality operator
334
+
335
+ /// Equality operator.
336
+ ///
337
+ /// Two iterators are equal if and only if they point to the
338
+ /// same object or both are \c INVALID.
339
+ bool operator==(Edge) const { return true; }
340
+ /// Inequality operator
341
+
342
+ /// Inequality operator.
343
+ bool operator!=(Edge) const { return true; }
344
+
345
+ /// Artificial ordering operator.
346
+
347
+ /// Artificial ordering operator.
348
+ ///
349
+ /// \note This operator only has to define some strict ordering of
350
+ /// the edges; this order has nothing to do with the iteration
351
+ /// ordering of the edges.
352
+ bool operator<(Edge) const { return false; }
353
+ };
354
+
355
+ /// Iterator class for the edges.
356
+
357
+ /// This iterator goes through each edge of the graph.
358
+ /// Its usage is quite simple, for example, you can count the number
359
+ /// of edges in a graph \c g of type \c %BpGraph as follows:
360
+ ///\code
361
+ /// int count=0;
362
+ /// for(BpGraph::EdgeIt e(g); e!=INVALID; ++e) ++count;
363
+ ///\endcode
364
+ class EdgeIt : public Edge {
365
+ public:
366
+ /// Default constructor
367
+
368
+ /// Default constructor.
369
+ /// \warning It sets the iterator to an undefined value.
370
+ EdgeIt() { }
371
+ /// Copy constructor.
372
+
373
+ /// Copy constructor.
374
+ ///
375
+ EdgeIt(const EdgeIt& e) : Edge(e) { }
376
+ /// %Invalid constructor \& conversion.
377
+
378
+ /// Initializes the iterator to be invalid.
379
+ /// \sa Invalid for more details.
380
+ EdgeIt(Invalid) { }
381
+ /// Sets the iterator to the first edge.
382
+
383
+ /// Sets the iterator to the first edge of the given graph.
384
+ ///
385
+ explicit EdgeIt(const BpGraph&) { }
386
+ /// Sets the iterator to the given edge.
387
+
388
+ /// Sets the iterator to the given edge of the given graph.
389
+ ///
390
+ EdgeIt(const BpGraph&, const Edge&) { }
391
+ /// Next edge
392
+
393
+ /// Assign the iterator to the next edge.
394
+ ///
395
+ EdgeIt& operator++() { return *this; }
396
+ };
397
+
398
+ /// Iterator class for the incident edges of a node.
399
+
400
+ /// This iterator goes trough the incident undirected edges
401
+ /// of a certain node of a graph.
402
+ /// Its usage is quite simple, for example, you can compute the
403
+ /// degree (i.e. the number of incident edges) of a node \c n
404
+ /// in a graph \c g of type \c %BpGraph as follows.
405
+ ///
406
+ ///\code
407
+ /// int count=0;
408
+ /// for(BpGraph::IncEdgeIt e(g, n); e!=INVALID; ++e) ++count;
409
+ ///\endcode
410
+ ///
411
+ /// \warning Loop edges will be iterated twice.
412
+ class IncEdgeIt : public Edge {
413
+ public:
414
+ /// Default constructor
415
+
416
+ /// Default constructor.
417
+ /// \warning It sets the iterator to an undefined value.
418
+ IncEdgeIt() { }
419
+ /// Copy constructor.
420
+
421
+ /// Copy constructor.
422
+ ///
423
+ IncEdgeIt(const IncEdgeIt& e) : Edge(e) { }
424
+ /// %Invalid constructor \& conversion.
425
+
426
+ /// Initializes the iterator to be invalid.
427
+ /// \sa Invalid for more details.
428
+ IncEdgeIt(Invalid) { }
429
+ /// Sets the iterator to the first incident edge.
430
+
431
+ /// Sets the iterator to the first incident edge of the given node.
432
+ ///
433
+ IncEdgeIt(const BpGraph&, const Node&) { }
434
+ /// Sets the iterator to the given edge.
435
+
436
+ /// Sets the iterator to the given edge of the given graph.
437
+ ///
438
+ IncEdgeIt(const BpGraph&, const Edge&) { }
439
+ /// Next incident edge
440
+
441
+ /// Assign the iterator to the next incident edge
442
+ /// of the corresponding node.
443
+ IncEdgeIt& operator++() { return *this; }
444
+ };
445
+
446
+ /// The arc type of the graph
447
+
448
+ /// This class identifies a directed arc of the graph. It also serves
449
+ /// as a base class of the arc iterators,
450
+ /// thus they will convert to this type.
451
+ class Arc {
452
+ public:
453
+ /// Default constructor
454
+
455
+ /// Default constructor.
456
+ /// \warning It sets the object to an undefined value.
457
+ Arc() { }
458
+ /// Copy constructor.
459
+
460
+ /// Copy constructor.
461
+ ///
462
+ Arc(const Arc&) { }
463
+ /// %Invalid constructor \& conversion.
464
+
465
+ /// Initializes the object to be invalid.
466
+ /// \sa Invalid for more details.
467
+ Arc(Invalid) { }
468
+ /// Equality operator
469
+
470
+ /// Equality operator.
471
+ ///
472
+ /// Two iterators are equal if and only if they point to the
473
+ /// same object or both are \c INVALID.
474
+ bool operator==(Arc) const { return true; }
475
+ /// Inequality operator
476
+
477
+ /// Inequality operator.
478
+ bool operator!=(Arc) const { return true; }
479
+
480
+ /// Artificial ordering operator.
481
+
482
+ /// Artificial ordering operator.
483
+ ///
484
+ /// \note This operator only has to define some strict ordering of
485
+ /// the arcs; this order has nothing to do with the iteration
486
+ /// ordering of the arcs.
487
+ bool operator<(Arc) const { return false; }
488
+
489
+ /// Converison to \c Edge
490
+
491
+ /// Converison to \c Edge.
492
+ ///
493
+ operator Edge() const { return Edge(); }
494
+ };
495
+
496
+ /// Iterator class for the arcs.
497
+
498
+ /// This iterator goes through each directed arc of the graph.
499
+ /// Its usage is quite simple, for example, you can count the number
500
+ /// of arcs in a graph \c g of type \c %BpGraph as follows:
501
+ ///\code
502
+ /// int count=0;
503
+ /// for(BpGraph::ArcIt a(g); a!=INVALID; ++a) ++count;
504
+ ///\endcode
505
+ class ArcIt : public Arc {
506
+ public:
507
+ /// Default constructor
508
+
509
+ /// Default constructor.
510
+ /// \warning It sets the iterator to an undefined value.
511
+ ArcIt() { }
512
+ /// Copy constructor.
513
+
514
+ /// Copy constructor.
515
+ ///
516
+ ArcIt(const ArcIt& e) : Arc(e) { }
517
+ /// %Invalid constructor \& conversion.
518
+
519
+ /// Initializes the iterator to be invalid.
520
+ /// \sa Invalid for more details.
521
+ ArcIt(Invalid) { }
522
+ /// Sets the iterator to the first arc.
523
+
524
+ /// Sets the iterator to the first arc of the given graph.
525
+ ///
526
+ explicit ArcIt(const BpGraph &g)
527
+ {
528
+ ::lemon::ignore_unused_variable_warning(g);
529
+ }
530
+ /// Sets the iterator to the given arc.
531
+
532
+ /// Sets the iterator to the given arc of the given graph.
533
+ ///
534
+ ArcIt(const BpGraph&, const Arc&) { }
535
+ /// Next arc
536
+
537
+ /// Assign the iterator to the next arc.
538
+ ///
539
+ ArcIt& operator++() { return *this; }
540
+ };
541
+
542
+ /// Iterator class for the outgoing arcs of a node.
543
+
544
+ /// This iterator goes trough the \e outgoing directed arcs of a
545
+ /// certain node of a graph.
546
+ /// Its usage is quite simple, for example, you can count the number
547
+ /// of outgoing arcs of a node \c n
548
+ /// in a graph \c g of type \c %BpGraph as follows.
549
+ ///\code
550
+ /// int count=0;
551
+ /// for (Digraph::OutArcIt a(g, n); a!=INVALID; ++a) ++count;
552
+ ///\endcode
553
+ class OutArcIt : public Arc {
554
+ public:
555
+ /// Default constructor
556
+
557
+ /// Default constructor.
558
+ /// \warning It sets the iterator to an undefined value.
559
+ OutArcIt() { }
560
+ /// Copy constructor.
561
+
562
+ /// Copy constructor.
563
+ ///
564
+ OutArcIt(const OutArcIt& e) : Arc(e) { }
565
+ /// %Invalid constructor \& conversion.
566
+
567
+ /// Initializes the iterator to be invalid.
568
+ /// \sa Invalid for more details.
569
+ OutArcIt(Invalid) { }
570
+ /// Sets the iterator to the first outgoing arc.
571
+
572
+ /// Sets the iterator to the first outgoing arc of the given node.
573
+ ///
574
+ OutArcIt(const BpGraph& n, const Node& g) {
575
+ ::lemon::ignore_unused_variable_warning(n);
576
+ ::lemon::ignore_unused_variable_warning(g);
577
+ }
578
+ /// Sets the iterator to the given arc.
579
+
580
+ /// Sets the iterator to the given arc of the given graph.
581
+ ///
582
+ OutArcIt(const BpGraph&, const Arc&) { }
583
+ /// Next outgoing arc
584
+
585
+ /// Assign the iterator to the next
586
+ /// outgoing arc of the corresponding node.
587
+ OutArcIt& operator++() { return *this; }
588
+ };
589
+
590
+ /// Iterator class for the incoming arcs of a node.
591
+
592
+ /// This iterator goes trough the \e incoming directed arcs of a
593
+ /// certain node of a graph.
594
+ /// Its usage is quite simple, for example, you can count the number
595
+ /// of incoming arcs of a node \c n
596
+ /// in a graph \c g of type \c %BpGraph as follows.
597
+ ///\code
598
+ /// int count=0;
599
+ /// for (Digraph::InArcIt a(g, n); a!=INVALID; ++a) ++count;
600
+ ///\endcode
601
+ class InArcIt : public Arc {
602
+ public:
603
+ /// Default constructor
604
+
605
+ /// Default constructor.
606
+ /// \warning It sets the iterator to an undefined value.
607
+ InArcIt() { }
608
+ /// Copy constructor.
609
+
610
+ /// Copy constructor.
611
+ ///
612
+ InArcIt(const InArcIt& e) : Arc(e) { }
613
+ /// %Invalid constructor \& conversion.
614
+
615
+ /// Initializes the iterator to be invalid.
616
+ /// \sa Invalid for more details.
617
+ InArcIt(Invalid) { }
618
+ /// Sets the iterator to the first incoming arc.
619
+
620
+ /// Sets the iterator to the first incoming arc of the given node.
621
+ ///
622
+ InArcIt(const BpGraph& g, const Node& n) {
623
+ ::lemon::ignore_unused_variable_warning(n);
624
+ ::lemon::ignore_unused_variable_warning(g);
625
+ }
626
+ /// Sets the iterator to the given arc.
627
+
628
+ /// Sets the iterator to the given arc of the given graph.
629
+ ///
630
+ InArcIt(const BpGraph&, const Arc&) { }
631
+ /// Next incoming arc
632
+
633
+ /// Assign the iterator to the next
634
+ /// incoming arc of the corresponding node.
635
+ InArcIt& operator++() { return *this; }
636
+ };
637
+
638
+ /// \brief Standard graph map type for the nodes.
639
+ ///
640
+ /// Standard graph map type for the nodes.
641
+ /// It conforms to the ReferenceMap concept.
642
+ template<class T>
643
+ class NodeMap : public ReferenceMap<Node, T, T&, const T&>
644
+ {
645
+ public:
646
+
647
+ /// Constructor
648
+ explicit NodeMap(const BpGraph&) { }
649
+ /// Constructor with given initial value
650
+ NodeMap(const BpGraph&, T) { }
651
+
652
+ private:
653
+ ///Copy constructor
654
+ NodeMap(const NodeMap& nm) :
655
+ ReferenceMap<Node, T, T&, const T&>(nm) { }
656
+ ///Assignment operator
657
+ template <typename CMap>
658
+ NodeMap& operator=(const CMap&) {
659
+ checkConcept<ReadMap<Node, T>, CMap>();
660
+ return *this;
661
+ }
662
+ };
663
+
664
+ /// \brief Standard graph map type for the red nodes.
665
+ ///
666
+ /// Standard graph map type for the red nodes.
667
+ /// It conforms to the ReferenceMap concept.
668
+ template<class T>
669
+ class RedNodeMap : public ReferenceMap<Node, T, T&, const T&>
670
+ {
671
+ public:
672
+
673
+ /// Constructor
674
+ explicit RedNodeMap(const BpGraph&) { }
675
+ /// Constructor with given initial value
676
+ RedNodeMap(const BpGraph&, T) { }
677
+
678
+ private:
679
+ ///Copy constructor
680
+ RedNodeMap(const RedNodeMap& nm) :
681
+ ReferenceMap<Node, T, T&, const T&>(nm) { }
682
+ ///Assignment operator
683
+ template <typename CMap>
684
+ RedNodeMap& operator=(const CMap&) {
685
+ checkConcept<ReadMap<Node, T>, CMap>();
686
+ return *this;
687
+ }
688
+ };
689
+
690
+ /// \brief Standard graph map type for the blue nodes.
691
+ ///
692
+ /// Standard graph map type for the blue nodes.
693
+ /// It conforms to the ReferenceMap concept.
694
+ template<class T>
695
+ class BlueNodeMap : public ReferenceMap<Node, T, T&, const T&>
696
+ {
697
+ public:
698
+
699
+ /// Constructor
700
+ explicit BlueNodeMap(const BpGraph&) { }
701
+ /// Constructor with given initial value
702
+ BlueNodeMap(const BpGraph&, T) { }
703
+
704
+ private:
705
+ ///Copy constructor
706
+ BlueNodeMap(const BlueNodeMap& nm) :
707
+ ReferenceMap<Node, T, T&, const T&>(nm) { }
708
+ ///Assignment operator
709
+ template <typename CMap>
710
+ BlueNodeMap& operator=(const CMap&) {
711
+ checkConcept<ReadMap<Node, T>, CMap>();
712
+ return *this;
713
+ }
714
+ };
715
+
716
+ /// \brief Standard graph map type for the arcs.
717
+ ///
718
+ /// Standard graph map type for the arcs.
719
+ /// It conforms to the ReferenceMap concept.
720
+ template<class T>
721
+ class ArcMap : public ReferenceMap<Arc, T, T&, const T&>
722
+ {
723
+ public:
724
+
725
+ /// Constructor
726
+ explicit ArcMap(const BpGraph&) { }
727
+ /// Constructor with given initial value
728
+ ArcMap(const BpGraph&, T) { }
729
+
730
+ private:
731
+ ///Copy constructor
732
+ ArcMap(const ArcMap& em) :
733
+ ReferenceMap<Arc, T, T&, const T&>(em) { }
734
+ ///Assignment operator
735
+ template <typename CMap>
736
+ ArcMap& operator=(const CMap&) {
737
+ checkConcept<ReadMap<Arc, T>, CMap>();
738
+ return *this;
739
+ }
740
+ };
741
+
742
+ /// \brief Standard graph map type for the edges.
743
+ ///
744
+ /// Standard graph map type for the edges.
745
+ /// It conforms to the ReferenceMap concept.
746
+ template<class T>
747
+ class EdgeMap : public ReferenceMap<Edge, T, T&, const T&>
748
+ {
749
+ public:
750
+
751
+ /// Constructor
752
+ explicit EdgeMap(const BpGraph&) { }
753
+ /// Constructor with given initial value
754
+ EdgeMap(const BpGraph&, T) { }
755
+
756
+ private:
757
+ ///Copy constructor
758
+ EdgeMap(const EdgeMap& em) :
759
+ ReferenceMap<Edge, T, T&, const T&>(em) {}
760
+ ///Assignment operator
761
+ template <typename CMap>
762
+ EdgeMap& operator=(const CMap&) {
763
+ checkConcept<ReadMap<Edge, T>, CMap>();
764
+ return *this;
765
+ }
766
+ };
767
+
768
+ /// \brief Gives back %true for red nodes.
769
+ ///
770
+ /// Gives back %true for red nodes.
771
+ bool red(const Node&) const { return true; }
772
+
773
+ /// \brief Gives back %true for blue nodes.
774
+ ///
775
+ /// Gives back %true for blue nodes.
776
+ bool blue(const Node&) const { return true; }
777
+
778
+ /// \brief Converts the node to red node object.
779
+ ///
780
+ /// This function converts unsafely the node to red node
781
+ /// object. It should be called only if the node is from the red
782
+ /// partition or INVALID.
783
+ RedNode asRedNodeUnsafe(const Node&) const { return RedNode(); }
784
+
785
+ /// \brief Converts the node to blue node object.
786
+ ///
787
+ /// This function converts unsafely the node to blue node
788
+ /// object. It should be called only if the node is from the red
789
+ /// partition or INVALID.
790
+ BlueNode asBlueNodeUnsafe(const Node&) const { return BlueNode(); }
791
+
792
+ /// \brief Converts the node to red node object.
793
+ ///
794
+ /// This function converts safely the node to red node
795
+ /// object. If the node is not from the red partition, then it
796
+ /// returns INVALID.
797
+ RedNode asRedNode(const Node&) const { return RedNode(); }
798
+
799
+ /// \brief Converts the node to blue node object.
800
+ ///
801
+ /// This function converts unsafely the node to blue node
802
+ /// object. If the node is not from the blue partition, then it
803
+ /// returns INVALID.
804
+ BlueNode asBlueNode(const Node&) const { return BlueNode(); }
805
+
806
+ /// \brief Gives back the red end node of the edge.
807
+ ///
808
+ /// Gives back the red end node of the edge.
809
+ RedNode redNode(const Edge&) const { return RedNode(); }
810
+
811
+ /// \brief Gives back the blue end node of the edge.
812
+ ///
813
+ /// Gives back the blue end node of the edge.
814
+ BlueNode blueNode(const Edge&) const { return BlueNode(); }
815
+
816
+ /// \brief The first node of the edge.
817
+ ///
818
+ /// It is a synonim for the \c redNode().
819
+ Node u(Edge) const { return INVALID; }
820
+
821
+ /// \brief The second node of the edge.
822
+ ///
823
+ /// It is a synonim for the \c blueNode().
824
+ Node v(Edge) const { return INVALID; }
825
+
826
+ /// \brief The source node of the arc.
827
+ ///
828
+ /// Returns the source node of the given arc.
829
+ Node source(Arc) const { return INVALID; }
830
+
831
+ /// \brief The target node of the arc.
832
+ ///
833
+ /// Returns the target node of the given arc.
834
+ Node target(Arc) const { return INVALID; }
835
+
836
+ /// \brief The ID of the node.
837
+ ///
838
+ /// Returns the ID of the given node.
839
+ int id(Node) const { return -1; }
840
+
841
+ /// \brief The red ID of the node.
842
+ ///
843
+ /// Returns the red ID of the given node.
844
+ int id(RedNode) const { return -1; }
845
+
846
+ /// \brief The blue ID of the node.
847
+ ///
848
+ /// Returns the blue ID of the given node.
849
+ int id(BlueNode) const { return -1; }
850
+
851
+ /// \brief The ID of the edge.
852
+ ///
853
+ /// Returns the ID of the given edge.
854
+ int id(Edge) const { return -1; }
855
+
856
+ /// \brief The ID of the arc.
857
+ ///
858
+ /// Returns the ID of the given arc.
859
+ int id(Arc) const { return -1; }
860
+
861
+ /// \brief The node with the given ID.
862
+ ///
863
+ /// Returns the node with the given ID.
864
+ /// \pre The argument should be a valid node ID in the graph.
865
+ Node nodeFromId(int) const { return INVALID; }
866
+
867
+ /// \brief The edge with the given ID.
868
+ ///
869
+ /// Returns the edge with the given ID.
870
+ /// \pre The argument should be a valid edge ID in the graph.
871
+ Edge edgeFromId(int) const { return INVALID; }
872
+
873
+ /// \brief The arc with the given ID.
874
+ ///
875
+ /// Returns the arc with the given ID.
876
+ /// \pre The argument should be a valid arc ID in the graph.
877
+ Arc arcFromId(int) const { return INVALID; }
878
+
879
+ /// \brief An upper bound on the node IDs.
880
+ ///
881
+ /// Returns an upper bound on the node IDs.
882
+ int maxNodeId() const { return -1; }
883
+
884
+ /// \brief An upper bound on the red IDs.
885
+ ///
886
+ /// Returns an upper bound on the red IDs.
887
+ int maxRedId() const { return -1; }
888
+
889
+ /// \brief An upper bound on the blue IDs.
890
+ ///
891
+ /// Returns an upper bound on the blue IDs.
892
+ int maxBlueId() const { return -1; }
893
+
894
+ /// \brief An upper bound on the edge IDs.
895
+ ///
896
+ /// Returns an upper bound on the edge IDs.
897
+ int maxEdgeId() const { return -1; }
898
+
899
+ /// \brief An upper bound on the arc IDs.
900
+ ///
901
+ /// Returns an upper bound on the arc IDs.
902
+ int maxArcId() const { return -1; }
903
+
904
+ /// \brief The direction of the arc.
905
+ ///
906
+ /// Returns \c true if the given arc goes from a red node to a blue node.
907
+ bool direction(Arc) const { return true; }
908
+
909
+ /// \brief Direct the edge.
910
+ ///
911
+ /// Direct the given edge. The returned arc
912
+ /// represents the given edge and its direction comes
913
+ /// from the bool parameter. If it is \c true, then the source of the node
914
+ /// will be a red node.
915
+ Arc direct(Edge, bool) const {
916
+ return INVALID;
917
+ }
918
+
919
+ /// \brief Direct the edge.
920
+ ///
921
+ /// Direct the given edge. The returned arc represents the given
922
+ /// edge and its source node is the given node.
923
+ Arc direct(Edge, Node) const {
924
+ return INVALID;
925
+ }
926
+
927
+ /// \brief The oppositely directed arc.
928
+ ///
929
+ /// Returns the oppositely directed arc representing the same edge.
930
+ Arc oppositeArc(Arc) const { return INVALID; }
931
+
932
+ /// \brief The opposite node on the edge.
933
+ ///
934
+ /// Returns the opposite node on the given edge.
935
+ Node oppositeNode(Node, Edge) const { return INVALID; }
936
+
937
+ void first(Node&) const {}
938
+ void next(Node&) const {}
939
+
940
+ void firstRed(RedNode&) const {}
941
+ void nextRed(RedNode&) const {}
942
+
943
+ void firstBlue(BlueNode&) const {}
944
+ void nextBlue(BlueNode&) const {}
945
+
946
+ void first(Edge&) const {}
947
+ void next(Edge&) const {}
948
+
949
+ void first(Arc&) const {}
950
+ void next(Arc&) const {}
951
+
952
+ void firstOut(Arc&, Node) const {}
953
+ void nextOut(Arc&) const {}
954
+
955
+ void firstIn(Arc&, Node) const {}
956
+ void nextIn(Arc&) const {}
957
+
958
+ void firstInc(Edge &, bool &, const Node &) const {}
959
+ void nextInc(Edge &, bool &) const {}
960
+
961
+ // The second parameter is dummy.
962
+ Node fromId(int, Node) const { return INVALID; }
963
+ // The second parameter is dummy.
964
+ Edge fromId(int, Edge) const { return INVALID; }
965
+ // The second parameter is dummy.
966
+ Arc fromId(int, Arc) const { return INVALID; }
967
+
968
+ // Dummy parameter.
969
+ int maxId(Node) const { return -1; }
970
+ // Dummy parameter.
971
+ int maxId(RedNode) const { return -1; }
972
+ // Dummy parameter.
973
+ int maxId(BlueNode) const { return -1; }
974
+ // Dummy parameter.
975
+ int maxId(Edge) const { return -1; }
976
+ // Dummy parameter.
977
+ int maxId(Arc) const { return -1; }
978
+
979
+ /// \brief The base node of the iterator.
980
+ ///
981
+ /// Returns the base node of the given incident edge iterator.
982
+ Node baseNode(IncEdgeIt) const { return INVALID; }
983
+
984
+ /// \brief The running node of the iterator.
985
+ ///
986
+ /// Returns the running node of the given incident edge iterator.
987
+ Node runningNode(IncEdgeIt) const { return INVALID; }
988
+
989
+ /// \brief The base node of the iterator.
990
+ ///
991
+ /// Returns the base node of the given outgoing arc iterator
992
+ /// (i.e. the source node of the corresponding arc).
993
+ Node baseNode(OutArcIt) const { return INVALID; }
994
+
995
+ /// \brief The running node of the iterator.
996
+ ///
997
+ /// Returns the running node of the given outgoing arc iterator
998
+ /// (i.e. the target node of the corresponding arc).
999
+ Node runningNode(OutArcIt) const { return INVALID; }
1000
+
1001
+ /// \brief The base node of the iterator.
1002
+ ///
1003
+ /// Returns the base node of the given incoming arc iterator
1004
+ /// (i.e. the target node of the corresponding arc).
1005
+ Node baseNode(InArcIt) const { return INVALID; }
1006
+
1007
+ /// \brief The running node of the iterator.
1008
+ ///
1009
+ /// Returns the running node of the given incoming arc iterator
1010
+ /// (i.e. the source node of the corresponding arc).
1011
+ Node runningNode(InArcIt) const { return INVALID; }
1012
+
1013
+ template <typename _BpGraph>
1014
+ struct Constraints {
1015
+ void constraints() {
1016
+ checkConcept<BaseBpGraphComponent, _BpGraph>();
1017
+ checkConcept<IterableBpGraphComponent<>, _BpGraph>();
1018
+ checkConcept<IDableBpGraphComponent<>, _BpGraph>();
1019
+ checkConcept<MappableBpGraphComponent<>, _BpGraph>();
1020
+ }
1021
+ };
1022
+
1023
+ };
1024
+
1025
+ }
1026
+
1027
+ }
1028
+
1029
+ #endif