0
3
1
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-2008 |
|
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 |
#ifndef LEMON_FULL_GRAPH_H |
|
20 |
#define LEMON_FULL_GRAPH_H |
|
21 |
|
|
22 |
#include <lemon/core.h> |
|
23 |
#include <lemon/bits/graph_extender.h> |
|
24 |
|
|
25 |
///\ingroup graphs |
|
26 |
///\file |
|
27 |
///\brief FullGraph and FullDigraph classes. |
|
28 |
|
|
29 |
namespace lemon { |
|
30 |
|
|
31 |
class FullDigraphBase { |
|
32 |
public: |
|
33 |
|
|
34 |
typedef FullDigraphBase Graph; |
|
35 |
|
|
36 |
class Node; |
|
37 |
class Arc; |
|
38 |
|
|
39 |
protected: |
|
40 |
|
|
41 |
int _node_num; |
|
42 |
int _arc_num; |
|
43 |
|
|
44 |
FullDigraphBase() {} |
|
45 |
|
|
46 |
void construct(int n) { _node_num = n; _arc_num = n * n; } |
|
47 |
|
|
48 |
public: |
|
49 |
|
|
50 |
typedef True NodeNumTag; |
|
51 |
typedef True ArcNumTag; |
|
52 |
|
|
53 |
Node operator()(int ix) const { return Node(ix); } |
|
54 |
int index(const Node& node) const { return node._id; } |
|
55 |
|
|
56 |
Arc arc(const Node& s, const Node& t) const { |
|
57 |
return Arc(s._id * _node_num + t._id); |
|
58 |
} |
|
59 |
|
|
60 |
int nodeNum() const { return _node_num; } |
|
61 |
int arcNum() const { return _arc_num; } |
|
62 |
|
|
63 |
int maxNodeId() const { return _node_num - 1; } |
|
64 |
int maxArcId() const { return _arc_num - 1; } |
|
65 |
|
|
66 |
Node source(Arc arc) const { return arc._id / _node_num; } |
|
67 |
Node target(Arc arc) const { return arc._id % _node_num; } |
|
68 |
|
|
69 |
static int id(Node node) { return node._id; } |
|
70 |
static int id(Arc arc) { return arc._id; } |
|
71 |
|
|
72 |
static Node nodeFromId(int id) { return Node(id);} |
|
73 |
static Arc arcFromId(int id) { return Arc(id);} |
|
74 |
|
|
75 |
typedef True FindArcTag; |
|
76 |
|
|
77 |
Arc findArc(Node s, Node t, Arc prev = INVALID) const { |
|
78 |
return prev == INVALID ? arc(s, t) : INVALID; |
|
79 |
} |
|
80 |
|
|
81 |
class Node { |
|
82 |
friend class FullDigraphBase; |
|
83 |
|
|
84 |
protected: |
|
85 |
int _id; |
|
86 |
Node(int id) : _id(id) {} |
|
87 |
public: |
|
88 |
Node() {} |
|
89 |
Node (Invalid) : _id(-1) {} |
|
90 |
bool operator==(const Node node) const {return _id == node._id;} |
|
91 |
bool operator!=(const Node node) const {return _id != node._id;} |
|
92 |
bool operator<(const Node node) const {return _id < node._id;} |
|
93 |
}; |
|
94 |
|
|
95 |
class Arc { |
|
96 |
friend class FullDigraphBase; |
|
97 |
|
|
98 |
protected: |
|
99 |
int _id; // _node_num * source + target; |
|
100 |
|
|
101 |
Arc(int id) : _id(id) {} |
|
102 |
|
|
103 |
public: |
|
104 |
Arc() { } |
|
105 |
Arc (Invalid) { _id = -1; } |
|
106 |
bool operator==(const Arc arc) const {return _id == arc._id;} |
|
107 |
bool operator!=(const Arc arc) const {return _id != arc._id;} |
|
108 |
bool operator<(const Arc arc) const {return _id < arc._id;} |
|
109 |
}; |
|
110 |
|
|
111 |
void first(Node& node) const { |
|
112 |
node._id = _node_num - 1; |
|
113 |
} |
|
114 |
|
|
115 |
static void next(Node& node) { |
|
116 |
--node._id; |
|
117 |
} |
|
118 |
|
|
119 |
void first(Arc& arc) const { |
|
120 |
arc._id = _arc_num - 1; |
|
121 |
} |
|
122 |
|
|
123 |
static void next(Arc& arc) { |
|
124 |
--arc._id; |
|
125 |
} |
|
126 |
|
|
127 |
void firstOut(Arc& arc, const Node& node) const { |
|
128 |
arc._id = (node._id + 1) * _node_num - 1; |
|
129 |
} |
|
130 |
|
|
131 |
void nextOut(Arc& arc) const { |
|
132 |
if (arc._id % _node_num == 0) arc._id = 0; |
|
133 |
--arc._id; |
|
134 |
} |
|
135 |
|
|
136 |
void firstIn(Arc& arc, const Node& node) const { |
|
137 |
arc._id = _arc_num + node._id - _node_num; |
|
138 |
} |
|
139 |
|
|
140 |
void nextIn(Arc& arc) const { |
|
141 |
arc._id -= _node_num; |
|
142 |
if (arc._id < 0) arc._id = -1; |
|
143 |
} |
|
144 |
|
|
145 |
}; |
|
146 |
|
|
147 |
typedef DigraphExtender<FullDigraphBase> ExtendedFullDigraphBase; |
|
148 |
|
|
149 |
/// \ingroup graphs |
|
150 |
/// |
|
151 |
/// \brief A full digraph class. |
|
152 |
/// |
|
153 |
/// This is a simple and fast directed full graph implementation. |
|
154 |
/// From each node go arcs to each node (including the source node), |
|
155 |
/// therefore the number of the arcs in the digraph is the square of |
|
156 |
/// the node number. This digraph type is completely static, so you |
|
157 |
/// can neither add nor delete either arcs or nodes, and it needs |
|
158 |
/// constant space in memory. |
|
159 |
/// |
|
160 |
/// This class conforms to the \ref concepts::Digraph "Digraph" concept |
|
161 |
/// and it also has an important extra feature that its maps are |
|
162 |
/// real \ref concepts::ReferenceMap "reference map"s. |
|
163 |
/// |
|
164 |
/// The \c FullDigraph and \c FullGraph classes are very similar, |
|
165 |
/// but there are two differences. While this class conforms only |
|
166 |
/// to the \ref concepts::Digraph "Digraph" concept, the \c FullGraph |
|
167 |
/// class conforms to the \ref concepts::Graph "Graph" concept, |
|
168 |
/// moreover \c FullGraph does not contain a loop arc for each |
|
169 |
/// node as \c FullDigraph does. |
|
170 |
/// |
|
171 |
/// \sa FullGraph |
|
172 |
class FullDigraph : public ExtendedFullDigraphBase { |
|
173 |
public: |
|
174 |
|
|
175 |
typedef ExtendedFullDigraphBase Parent; |
|
176 |
|
|
177 |
/// \brief Constructor |
|
178 |
FullDigraph() { construct(0); } |
|
179 |
|
|
180 |
/// \brief Constructor |
|
181 |
/// |
|
182 |
/// Constructor. |
|
183 |
/// \param n The number of the nodes. |
|
184 |
FullDigraph(int n) { construct(n); } |
|
185 |
|
|
186 |
/// \brief Resizes the digraph |
|
187 |
/// |
|
188 |
/// Resizes the digraph. The function will fully destroy and |
|
189 |
/// rebuild the digraph. This cause that the maps of the digraph will |
|
190 |
/// reallocated automatically and the previous values will be lost. |
|
191 |
void resize(int n) { |
|
192 |
Parent::notifier(Arc()).clear(); |
|
193 |
Parent::notifier(Node()).clear(); |
|
194 |
construct(n); |
|
195 |
Parent::notifier(Node()).build(); |
|
196 |
Parent::notifier(Arc()).build(); |
|
197 |
} |
|
198 |
|
|
199 |
/// \brief Returns the node with the given index. |
|
200 |
/// |
|
201 |
/// Returns the node with the given index. Since it is a static |
|
202 |
/// digraph its nodes can be indexed with integers from the range |
|
203 |
/// <tt>[0..nodeNum()-1]</tt>. |
|
204 |
/// \sa index() |
|
205 |
Node operator()(int ix) const { return Parent::operator()(ix); } |
|
206 |
|
|
207 |
/// \brief Returns the index of the given node. |
|
208 |
/// |
|
209 |
/// Returns the index of the given node. Since it is a static |
|
210 |
/// digraph its nodes can be indexed with integers from the range |
|
211 |
/// <tt>[0..nodeNum()-1]</tt>. |
|
212 |
/// \sa operator() |
|
213 |
int index(const Node& node) const { return Parent::index(node); } |
|
214 |
|
|
215 |
/// \brief Returns the arc connecting the given nodes. |
|
216 |
/// |
|
217 |
/// Returns the arc connecting the given nodes. |
|
218 |
Arc arc(const Node& u, const Node& v) const { |
|
219 |
return Parent::arc(u, v); |
|
220 |
} |
|
221 |
|
|
222 |
/// \brief Number of nodes. |
|
223 |
int nodeNum() const { return Parent::nodeNum(); } |
|
224 |
/// \brief Number of arcs. |
|
225 |
int arcNum() const { return Parent::arcNum(); } |
|
226 |
}; |
|
227 |
|
|
228 |
|
|
229 |
class FullGraphBase { |
|
230 |
int _node_num; |
|
231 |
int _edge_num; |
|
232 |
public: |
|
233 |
|
|
234 |
typedef FullGraphBase Graph; |
|
235 |
|
|
236 |
class Node; |
|
237 |
class Arc; |
|
238 |
class Edge; |
|
239 |
|
|
240 |
protected: |
|
241 |
|
|
242 |
FullGraphBase() {} |
|
243 |
|
|
244 |
void construct(int n) { _node_num = n; _edge_num = n * (n - 1) / 2; } |
|
245 |
|
|
246 |
int _uid(int e) const { |
|
247 |
int u = e / _node_num; |
|
248 |
int v = e % _node_num; |
|
249 |
return u < v ? u : _node_num - 2 - u; |
|
250 |
} |
|
251 |
|
|
252 |
int _vid(int e) const { |
|
253 |
int u = e / _node_num; |
|
254 |
int v = e % _node_num; |
|
255 |
return u < v ? v : _node_num - 1 - v; |
|
256 |
} |
|
257 |
|
|
258 |
void _uvid(int e, int& u, int& v) const { |
|
259 |
u = e / _node_num; |
|
260 |
v = e % _node_num; |
|
261 |
if (u >= v) { |
|
262 |
u = _node_num - 2 - u; |
|
263 |
v = _node_num - 1 - v; |
|
264 |
} |
|
265 |
} |
|
266 |
|
|
267 |
void _stid(int a, int& s, int& t) const { |
|
268 |
if ((a & 1) == 1) { |
|
269 |
_uvid(a >> 1, s, t); |
|
270 |
} else { |
|
271 |
_uvid(a >> 1, t, s); |
|
272 |
} |
|
273 |
} |
|
274 |
|
|
275 |
int _eid(int u, int v) const { |
|
276 |
if (u < (_node_num - 1) / 2) { |
|
277 |
return u * _node_num + v; |
|
278 |
} else { |
|
279 |
return (_node_num - 1 - u) * _node_num - v - 1; |
|
280 |
} |
|
281 |
} |
|
282 |
|
|
283 |
public: |
|
284 |
|
|
285 |
Node operator()(int ix) const { return Node(ix); } |
|
286 |
int index(const Node& node) const { return node._id; } |
|
287 |
|
|
288 |
Edge edge(const Node& u, const Node& v) const { |
|
289 |
if (u._id < v._id) { |
|
290 |
return Edge(_eid(u._id, v._id)); |
|
291 |
} else if (u._id != v._id) { |
|
292 |
return Edge(_eid(v._id, u._id)); |
|
293 |
} else { |
|
294 |
return INVALID; |
|
295 |
} |
|
296 |
} |
|
297 |
|
|
298 |
Arc arc(const Node& s, const Node& t) const { |
|
299 |
if (s._id < t._id) { |
|
300 |
return Arc((_eid(s._id, t._id) << 1) | 1); |
|
301 |
} else if (s._id != t._id) { |
|
302 |
return Arc(_eid(t._id, s._id) << 1); |
|
303 |
} else { |
|
304 |
return INVALID; |
|
305 |
} |
|
306 |
} |
|
307 |
|
|
308 |
typedef True NodeNumTag; |
|
309 |
typedef True EdgeNumTag; |
|
310 |
|
|
311 |
int nodeNum() const { return _node_num; } |
|
312 |
int arcNum() const { return 2 * _edge_num; } |
|
313 |
int edgeNum() const { return _edge_num; } |
|
314 |
|
|
315 |
static int id(Node node) { return node._id; } |
|
316 |
static int id(Arc arc) { return arc._id; } |
|
317 |
static int id(Edge edge) { return edge._id; } |
|
318 |
|
|
319 |
int maxNodeId() const { return _node_num-1; } |
|
320 |
int maxArcId() const { return 2 * _edge_num-1; } |
|
321 |
int maxEdgeId() const { return _edge_num-1; } |
|
322 |
|
|
323 |
static Node nodeFromId(int id) { return Node(id);} |
|
324 |
static Arc arcFromId(int id) { return Arc(id);} |
|
325 |
static Edge edgeFromId(int id) { return Edge(id);} |
|
326 |
|
|
327 |
Node u(Edge edge) const { |
|
328 |
return Node(_uid(edge._id)); |
|
329 |
} |
|
330 |
|
|
331 |
Node v(Edge edge) const { |
|
332 |
return Node(_vid(edge._id)); |
|
333 |
} |
|
334 |
|
|
335 |
Node source(Arc arc) const { |
|
336 |
return Node((arc._id & 1) == 1 ? |
|
337 |
_uid(arc._id >> 1) : _vid(arc._id >> 1)); |
|
338 |
} |
|
339 |
|
|
340 |
Node target(Arc arc) const { |
|
341 |
return Node((arc._id & 1) == 1 ? |
|
342 |
_vid(arc._id >> 1) : _uid(arc._id >> 1)); |
|
343 |
} |
|
344 |
|
|
345 |
typedef True FindEdgeTag; |
|
346 |
|
|
347 |
Edge findEdge(Node u, Node v, Edge prev = INVALID) const { |
|
348 |
return prev != INVALID ? INVALID : edge(u, v); |
|
349 |
} |
|
350 |
|
|
351 |
Arc findArc(Node s, Node t, Arc prev = INVALID) const { |
|
352 |
return prev != INVALID ? INVALID : arc(s, t); |
|
353 |
} |
|
354 |
|
|
355 |
class Node { |
|
356 |
friend class FullGraphBase; |
|
357 |
|
|
358 |
protected: |
|
359 |
int _id; |
|
360 |
Node(int id) : _id(id) {} |
|
361 |
public: |
|
362 |
Node() {} |
|
363 |
Node (Invalid) { _id = -1; } |
|
364 |
bool operator==(const Node node) const {return _id == node._id;} |
|
365 |
bool operator!=(const Node node) const {return _id != node._id;} |
|
366 |
bool operator<(const Node node) const {return _id < node._id;} |
|
367 |
}; |
|
368 |
|
|
369 |
class Edge { |
|
370 |
friend class FullGraphBase; |
|
371 |
friend class Arc; |
|
372 |
|
|
373 |
protected: |
|
374 |
int _id; |
|
375 |
|
|
376 |
Edge(int id) : _id(id) {} |
|
377 |
|
|
378 |
public: |
|
379 |
Edge() { } |
|
380 |
Edge (Invalid) { _id = -1; } |
|
381 |
|
|
382 |
bool operator==(const Edge edge) const {return _id == edge._id;} |
|
383 |
bool operator!=(const Edge edge) const {return _id != edge._id;} |
|
384 |
bool operator<(const Edge edge) const {return _id < edge._id;} |
|
385 |
}; |
|
386 |
|
|
387 |
class Arc { |
|
388 |
friend class FullGraphBase; |
|
389 |
|
|
390 |
protected: |
|
391 |
int _id; |
|
392 |
|
|
393 |
Arc(int id) : _id(id) {} |
|
394 |
|
|
395 |
public: |
|
396 |
Arc() { } |
|
397 |
Arc (Invalid) { _id = -1; } |
|
398 |
|
|
399 |
operator Edge() const { return Edge(_id != -1 ? (_id >> 1) : -1); } |
|
400 |
|
|
401 |
bool operator==(const Arc arc) const {return _id == arc._id;} |
|
402 |
bool operator!=(const Arc arc) const {return _id != arc._id;} |
|
403 |
bool operator<(const Arc arc) const {return _id < arc._id;} |
|
404 |
}; |
|
405 |
|
|
406 |
static bool direction(Arc arc) { |
|
407 |
return (arc._id & 1) == 1; |
|
408 |
} |
|
409 |
|
|
410 |
static Arc direct(Edge edge, bool dir) { |
|
411 |
return Arc((edge._id << 1) | (dir ? 1 : 0)); |
|
412 |
} |
|
413 |
|
|
414 |
void first(Node& node) const { |
|
415 |
node._id = _node_num - 1; |
|
416 |
} |
|
417 |
|
|
418 |
static void next(Node& node) { |
|
419 |
--node._id; |
|
420 |
} |
|
421 |
|
|
422 |
void first(Arc& arc) const { |
|
423 |
arc._id = (_edge_num << 1) - 1; |
|
424 |
} |
|
425 |
|
|
426 |
static void next(Arc& arc) { |
|
427 |
--arc._id; |
|
428 |
} |
|
429 |
|
|
430 |
void first(Edge& edge) const { |
|
431 |
edge._id = _edge_num - 1; |
|
432 |
} |
|
433 |
|
|
434 |
static void next(Edge& edge) { |
|
435 |
--edge._id; |
|
436 |
} |
|
437 |
|
|
438 |
void firstOut(Arc& arc, const Node& node) const { |
|
439 |
int s = node._id, t = _node_num - 1; |
|
440 |
if (s < t) { |
|
441 |
arc._id = (_eid(s, t) << 1) | 1; |
|
442 |
} else { |
|
443 |
--t; |
|
444 |
arc._id = (t != -1 ? (_eid(t, s) << 1) : -1); |
|
445 |
} |
|
446 |
} |
|
447 |
|
|
448 |
void nextOut(Arc& arc) const { |
|
449 |
int s, t; |
|
450 |
_stid(arc._id, s, t); |
|
451 |
--t; |
|
452 |
if (s < t) { |
|
453 |
arc._id = (_eid(s, t) << 1) | 1; |
|
454 |
} else { |
|
455 |
if (s == t) --t; |
|
456 |
arc._id = (t != -1 ? (_eid(t, s) << 1) : -1); |
|
457 |
} |
|
458 |
} |
|
459 |
|
|
460 |
void firstIn(Arc& arc, const Node& node) const { |
|
461 |
int s = _node_num - 1, t = node._id; |
|
462 |
if (s > t) { |
|
463 |
arc._id = (_eid(t, s) << 1); |
|
464 |
} else { |
|
465 |
--s; |
|
466 |
arc._id = (s != -1 ? (_eid(s, t) << 1) | 1 : -1); |
|
467 |
} |
|
468 |
} |
|
469 |
|
|
470 |
void nextIn(Arc& arc) const { |
|
471 |
int s, t; |
|
472 |
_stid(arc._id, s, t); |
|
473 |
--s; |
|
474 |
if (s > t) { |
|
475 |
arc._id = (_eid(t, s) << 1); |
|
476 |
} else { |
|
477 |
if (s == t) --s; |
|
478 |
arc._id = (s != -1 ? (_eid(s, t) << 1) | 1 : -1); |
|
479 |
} |
|
480 |
} |
|
481 |
|
|
482 |
void firstInc(Edge& edge, bool& dir, const Node& node) const { |
|
483 |
int u = node._id, v = _node_num - 1; |
|
484 |
if (u < v) { |
|
485 |
edge._id = _eid(u, v); |
|
486 |
dir = true; |
|
487 |
} else { |
|
488 |
--v; |
|
489 |
edge._id = (v != -1 ? _eid(v, u) : -1); |
|
490 |
dir = false; |
|
491 |
} |
|
492 |
} |
|
493 |
|
|
494 |
void nextInc(Edge& edge, bool& dir) const { |
|
495 |
int u, v; |
|
496 |
if (dir) { |
|
497 |
_uvid(edge._id, u, v); |
|
498 |
--v; |
|
499 |
if (u < v) { |
|
500 |
edge._id = _eid(u, v); |
|
501 |
} else { |
|
502 |
--v; |
|
503 |
edge._id = (v != -1 ? _eid(v, u) : -1); |
|
504 |
dir = false; |
|
505 |
} |
|
506 |
} else { |
|
507 |
_uvid(edge._id, v, u); |
|
508 |
--v; |
|
509 |
edge._id = (v != -1 ? _eid(v, u) : -1); |
|
510 |
} |
|
511 |
} |
|
512 |
|
|
513 |
}; |
|
514 |
|
|
515 |
typedef GraphExtender<FullGraphBase> ExtendedFullGraphBase; |
|
516 |
|
|
517 |
/// \ingroup graphs |
|
518 |
/// |
|
519 |
/// \brief An undirected full graph class. |
|
520 |
/// |
|
521 |
/// This is a simple and fast undirected full graph |
|
522 |
/// implementation. From each node go edge to each other node, |
|
523 |
/// therefore the number of edges in the graph is \f$n(n-1)/2\f$. |
|
524 |
/// This graph type is completely static, so you can neither |
|
525 |
/// add nor delete either edges or nodes, and it needs constant |
|
526 |
/// space in memory. |
|
527 |
/// |
|
528 |
/// This class conforms to the \ref concepts::Graph "Graph" concept |
|
529 |
/// and it also has an important extra feature that its maps are |
|
530 |
/// real \ref concepts::ReferenceMap "reference map"s. |
|
531 |
/// |
|
532 |
/// The \c FullGraph and \c FullDigraph classes are very similar, |
|
533 |
/// but there are two differences. While the \c FullDigraph class |
|
534 |
/// conforms only to the \ref concepts::Digraph "Digraph" concept, |
|
535 |
/// this class conforms to the \ref concepts::Graph "Graph" concept, |
|
536 |
/// moreover \c FullGraph does not contain a loop arc for each |
|
537 |
/// node as \c FullDigraph does. |
|
538 |
/// |
|
539 |
/// \sa FullDigraph |
|
540 |
class FullGraph : public ExtendedFullGraphBase { |
|
541 |
public: |
|
542 |
|
|
543 |
typedef ExtendedFullGraphBase Parent; |
|
544 |
|
|
545 |
/// \brief Constructor |
|
546 |
FullGraph() { construct(0); } |
|
547 |
|
|
548 |
/// \brief Constructor |
|
549 |
/// |
|
550 |
/// Constructor. |
|
551 |
/// \param n The number of the nodes. |
|
552 |
FullGraph(int n) { construct(n); } |
|
553 |
|
|
554 |
/// \brief Resizes the graph |
|
555 |
/// |
|
556 |
/// Resizes the graph. The function will fully destroy and |
|
557 |
/// rebuild the graph. This cause that the maps of the graph will |
|
558 |
/// reallocated automatically and the previous values will be lost. |
|
559 |
void resize(int n) { |
|
560 |
Parent::notifier(Arc()).clear(); |
|
561 |
Parent::notifier(Edge()).clear(); |
|
562 |
Parent::notifier(Node()).clear(); |
|
563 |
construct(n); |
|
564 |
Parent::notifier(Node()).build(); |
|
565 |
Parent::notifier(Edge()).build(); |
|
566 |
Parent::notifier(Arc()).build(); |
|
567 |
} |
|
568 |
|
|
569 |
/// \brief Returns the node with the given index. |
|
570 |
/// |
|
571 |
/// Returns the node with the given index. Since it is a static |
|
572 |
/// graph its nodes can be indexed with integers from the range |
|
573 |
/// <tt>[0..nodeNum()-1]</tt>. |
|
574 |
/// \sa index() |
|
575 |
Node operator()(int ix) const { return Parent::operator()(ix); } |
|
576 |
|
|
577 |
/// \brief Returns the index of the given node. |
|
578 |
/// |
|
579 |
/// Returns the index of the given node. Since it is a static |
|
580 |
/// graph its nodes can be indexed with integers from the range |
|
581 |
/// <tt>[0..nodeNum()-1]</tt>. |
|
582 |
/// \sa operator() |
|
583 |
int index(const Node& node) const { return Parent::index(node); } |
|
584 |
|
|
585 |
/// \brief Returns the arc connecting the given nodes. |
|
586 |
/// |
|
587 |
/// Returns the arc connecting the given nodes. |
|
588 |
Arc arc(const Node& s, const Node& t) const { |
|
589 |
return Parent::arc(s, t); |
|
590 |
} |
|
591 |
|
|
592 |
/// \brief Returns the edge connects the given nodes. |
|
593 |
/// |
|
594 |
/// Returns the edge connects the given nodes. |
|
595 |
Edge edge(const Node& u, const Node& v) const { |
|
596 |
return Parent::edge(u, v); |
|
597 |
} |
|
598 |
|
|
599 |
/// \brief Number of nodes. |
|
600 |
int nodeNum() const { return Parent::nodeNum(); } |
|
601 |
/// \brief Number of arcs. |
|
602 |
int arcNum() const { return Parent::arcNum(); } |
|
603 |
/// \brief Number of edges. |
|
604 |
int edgeNum() const { return Parent::edgeNum(); } |
|
605 |
|
|
606 |
}; |
|
607 |
|
|
608 |
|
|
609 |
} //namespace lemon |
|
610 |
|
|
611 |
|
|
612 |
#endif //LEMON_FULL_GRAPH_H |
1 | 1 |
EXTRA_DIST += \ |
2 | 2 |
lemon/lemon.pc.in \ |
3 | 3 |
lemon/CMakeLists.txt |
4 | 4 |
|
5 | 5 |
pkgconfig_DATA += lemon/lemon.pc |
6 | 6 |
|
7 | 7 |
lib_LTLIBRARIES += lemon/libemon.la |
8 | 8 |
|
9 | 9 |
lemon_libemon_la_SOURCES = \ |
10 | 10 |
lemon/arg_parser.cc \ |
11 | 11 |
lemon/base.cc \ |
12 | 12 |
lemon/color.cc \ |
13 | 13 |
lemon/random.cc |
14 | 14 |
|
15 | 15 |
#lemon_libemon_la_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS) $(SOPLEX_CXXFLAGS) |
16 | 16 |
#lemon_libemon_la_LDFLAGS = $(GLPK_LIBS) $(CPLEX_LIBS) $(SOPLEX_LIBS) |
17 | 17 |
|
18 | 18 |
lemon_HEADERS += \ |
19 | 19 |
lemon/arg_parser.h \ |
20 | 20 |
lemon/assert.h \ |
21 | 21 |
lemon/bfs.h \ |
22 | 22 |
lemon/bin_heap.h \ |
23 | 23 |
lemon/color.h \ |
24 | 24 |
lemon/concept_check.h \ |
25 | 25 |
lemon/counter.h \ |
26 | 26 |
lemon/core.h \ |
27 | 27 |
lemon/dfs.h \ |
28 | 28 |
lemon/dijkstra.h \ |
29 | 29 |
lemon/dim2.h \ |
30 | 30 |
lemon/error.h \ |
31 |
lemon/full_graph.h \ |
|
31 | 32 |
lemon/graph_to_eps.h \ |
32 | 33 |
lemon/grid_graph.h \ |
33 | 34 |
lemon/kruskal.h \ |
34 | 35 |
lemon/lgf_reader.h \ |
35 | 36 |
lemon/lgf_writer.h \ |
36 | 37 |
lemon/list_graph.h \ |
37 | 38 |
lemon/maps.h \ |
38 | 39 |
lemon/math.h \ |
39 | 40 |
lemon/max_matching.h \ |
40 | 41 |
lemon/nauty_reader.h \ |
41 | 42 |
lemon/path.h \ |
42 | 43 |
lemon/random.h \ |
43 | 44 |
lemon/smart_graph.h \ |
44 | 45 |
lemon/suurballe.h \ |
45 | 46 |
lemon/time_measure.h \ |
46 | 47 |
lemon/tolerance.h \ |
47 | 48 |
lemon/unionfind.h |
48 | 49 |
|
49 | 50 |
bits_HEADERS += \ |
50 | 51 |
lemon/bits/alteration_notifier.h \ |
51 | 52 |
lemon/bits/array_map.h \ |
52 | 53 |
lemon/bits/base_extender.h \ |
53 | 54 |
lemon/bits/bezier.h \ |
54 | 55 |
lemon/bits/default_map.h \ |
55 | 56 |
lemon/bits/enable_if.h \ |
56 | 57 |
lemon/bits/graph_extender.h \ |
57 | 58 |
lemon/bits/map_extender.h \ |
58 | 59 |
lemon/bits/path_dump.h \ |
59 | 60 |
lemon/bits/traits.h \ |
60 | 61 |
lemon/bits/vector_map.h |
61 | 62 |
|
62 | 63 |
concept_HEADERS += \ |
63 | 64 |
lemon/concepts/digraph.h \ |
64 | 65 |
lemon/concepts/graph.h \ |
65 | 66 |
lemon/concepts/graph_components.h \ |
66 | 67 |
lemon/concepts/heap.h \ |
67 | 68 |
lemon/concepts/maps.h \ |
68 | 69 |
lemon/concepts/path.h |
1 | 1 |
/* -*- mode: C++; indent-tabs-mode: nil; -*- |
2 | 2 |
* |
3 | 3 |
* This file is a part of LEMON, a generic C++ optimization library. |
4 | 4 |
* |
5 | 5 |
* Copyright (C) 2003-2008 |
6 | 6 |
* Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport |
7 | 7 |
* (Egervary Research Group on Combinatorial Optimization, EGRES). |
8 | 8 |
* |
9 | 9 |
* Permission to use, modify and distribute this software is granted |
10 | 10 |
* provided that this copyright notice appears in all copies. For |
11 | 11 |
* precise terms see the accompanying LICENSE file. |
12 | 12 |
* |
13 | 13 |
* This software is provided "AS IS" with no warranty of any kind, |
14 | 14 |
* express or implied, and with no claim as to its suitability for any |
15 | 15 |
* purpose. |
16 | 16 |
* |
17 | 17 |
*/ |
18 | 18 |
|
19 | 19 |
#include <lemon/concepts/digraph.h> |
20 | 20 |
#include <lemon/list_graph.h> |
21 | 21 |
#include <lemon/smart_graph.h> |
22 |
|
|
22 |
#include <lemon/full_graph.h> |
|
23 | 23 |
//#include <lemon/hypercube_graph.h> |
24 | 24 |
|
25 | 25 |
#include "test_tools.h" |
26 | 26 |
#include "graph_test.h" |
27 | 27 |
|
28 | 28 |
using namespace lemon; |
29 | 29 |
using namespace lemon::concepts; |
30 | 30 |
|
31 | 31 |
template <class Digraph> |
32 | 32 |
void checkDigraph() { |
33 | 33 |
TEMPLATE_DIGRAPH_TYPEDEFS(Digraph); |
34 | 34 |
Digraph G; |
35 | 35 |
|
36 | 36 |
checkGraphNodeList(G, 0); |
37 | 37 |
checkGraphArcList(G, 0); |
38 | 38 |
|
39 | 39 |
Node |
40 | 40 |
n1 = G.addNode(), |
41 | 41 |
n2 = G.addNode(), |
42 | 42 |
n3 = G.addNode(); |
43 | 43 |
checkGraphNodeList(G, 3); |
44 | 44 |
checkGraphArcList(G, 0); |
45 | 45 |
|
46 | 46 |
Arc a1 = G.addArc(n1, n2); |
47 | 47 |
check(G.source(a1) == n1 && G.target(a1) == n2, "Wrong arc"); |
48 | 48 |
checkGraphNodeList(G, 3); |
49 | 49 |
checkGraphArcList(G, 1); |
50 | 50 |
|
51 | 51 |
checkGraphOutArcList(G, n1, 1); |
52 | 52 |
checkGraphOutArcList(G, n2, 0); |
53 | 53 |
checkGraphOutArcList(G, n3, 0); |
54 | 54 |
|
55 | 55 |
checkGraphInArcList(G, n1, 0); |
56 | 56 |
checkGraphInArcList(G, n2, 1); |
57 | 57 |
checkGraphInArcList(G, n3, 0); |
58 | 58 |
|
59 | 59 |
checkGraphConArcList(G, 1); |
60 | 60 |
|
61 | 61 |
Arc a2 = G.addArc(n2, n1), a3 = G.addArc(n2, n3), a4 = G.addArc(n2, n3); |
62 | 62 |
checkGraphNodeList(G, 3); |
63 | 63 |
checkGraphArcList(G, 4); |
64 | 64 |
|
65 | 65 |
checkGraphOutArcList(G, n1, 1); |
66 | 66 |
checkGraphOutArcList(G, n2, 3); |
67 | 67 |
checkGraphOutArcList(G, n3, 0); |
68 | 68 |
|
69 | 69 |
checkGraphInArcList(G, n1, 1); |
70 | 70 |
checkGraphInArcList(G, n2, 1); |
71 | 71 |
checkGraphInArcList(G, n3, 2); |
72 | 72 |
|
73 | 73 |
checkGraphConArcList(G, 4); |
74 | 74 |
|
75 | 75 |
checkNodeIds(G); |
76 | 76 |
checkArcIds(G); |
77 | 77 |
checkGraphNodeMap(G); |
78 | 78 |
checkGraphArcMap(G); |
79 | 79 |
|
80 | 80 |
} |
81 | 81 |
|
82 |
void checkFullDigraph(int num) { |
|
83 |
typedef FullDigraph Digraph; |
|
84 |
DIGRAPH_TYPEDEFS(Digraph); |
|
85 |
Digraph G(num); |
|
86 |
|
|
87 |
checkGraphNodeList(G, num); |
|
88 |
checkGraphArcList(G, num * num); |
|
89 |
|
|
90 |
for (NodeIt n(G); n != INVALID; ++n) { |
|
91 |
checkGraphOutArcList(G, n, num); |
|
92 |
checkGraphInArcList(G, n, num); |
|
93 |
} |
|
94 |
|
|
95 |
checkGraphConArcList(G, num * num); |
|
96 |
|
|
97 |
checkNodeIds(G); |
|
98 |
checkArcIds(G); |
|
99 |
checkGraphNodeMap(G); |
|
100 |
checkGraphArcMap(G); |
|
101 |
|
|
102 |
for (int i = 0; i < G.nodeNum(); ++i) { |
|
103 |
check(G.index(G(i)) == i, "Wrong index"); |
|
104 |
} |
|
105 |
|
|
106 |
for (NodeIt s(G); s != INVALID; ++s) { |
|
107 |
for (NodeIt t(G); t != INVALID; ++t) { |
|
108 |
Arc a = G.arc(s, t); |
|
109 |
check(G.source(a) == s && G.target(a) == t, "Wrong arc lookup"); |
|
110 |
} |
|
111 |
} |
|
112 |
|
|
113 |
} |
|
114 |
|
|
82 | 115 |
|
83 | 116 |
void checkConcepts() { |
84 | 117 |
{ // Checking digraph components |
85 | 118 |
checkConcept<BaseDigraphComponent, BaseDigraphComponent >(); |
86 | 119 |
|
87 | 120 |
checkConcept<IDableDigraphComponent<>, |
88 | 121 |
IDableDigraphComponent<> >(); |
89 | 122 |
|
90 | 123 |
checkConcept<IterableDigraphComponent<>, |
91 | 124 |
IterableDigraphComponent<> >(); |
92 | 125 |
|
93 | 126 |
checkConcept<MappableDigraphComponent<>, |
94 | 127 |
MappableDigraphComponent<> >(); |
95 | 128 |
} |
96 | 129 |
{ // Checking skeleton digraph |
97 | 130 |
checkConcept<Digraph, Digraph>(); |
98 | 131 |
} |
99 | 132 |
{ // Checking ListDigraph |
100 | 133 |
checkConcept<Digraph, ListDigraph>(); |
101 | 134 |
checkConcept<AlterableDigraphComponent<>, ListDigraph>(); |
102 | 135 |
checkConcept<ExtendableDigraphComponent<>, ListDigraph>(); |
103 | 136 |
checkConcept<ClearableDigraphComponent<>, ListDigraph>(); |
104 | 137 |
checkConcept<ErasableDigraphComponent<>, ListDigraph>(); |
105 | 138 |
} |
106 | 139 |
{ // Checking SmartDigraph |
107 | 140 |
checkConcept<Digraph, SmartDigraph>(); |
108 | 141 |
checkConcept<AlterableDigraphComponent<>, SmartDigraph>(); |
109 | 142 |
checkConcept<ExtendableDigraphComponent<>, SmartDigraph>(); |
110 | 143 |
checkConcept<ClearableDigraphComponent<>, SmartDigraph>(); |
111 | 144 |
} |
112 |
// { // Checking FullDigraph |
|
113 |
// checkConcept<Digraph, FullDigraph>(); |
|
114 |
// |
|
145 |
{ // Checking FullDigraph |
|
146 |
checkConcept<Digraph, FullDigraph>(); |
|
147 |
} |
|
115 | 148 |
// { // Checking HyperCubeDigraph |
116 | 149 |
// checkConcept<Digraph, HyperCubeDigraph>(); |
117 | 150 |
// } |
118 | 151 |
} |
119 | 152 |
|
120 | 153 |
template <typename Digraph> |
121 | 154 |
void checkDigraphValidity() { |
122 | 155 |
TEMPLATE_DIGRAPH_TYPEDEFS(Digraph); |
123 | 156 |
Digraph g; |
124 | 157 |
|
125 | 158 |
Node |
126 | 159 |
n1 = g.addNode(), |
127 | 160 |
n2 = g.addNode(), |
128 | 161 |
n3 = g.addNode(); |
129 | 162 |
|
130 | 163 |
Arc |
131 | 164 |
e1 = g.addArc(n1, n2), |
132 | 165 |
e2 = g.addArc(n2, n3); |
133 | 166 |
|
134 | 167 |
check(g.valid(n1), "Wrong validity check"); |
135 | 168 |
check(g.valid(e1), "Wrong validity check"); |
136 | 169 |
|
137 | 170 |
check(!g.valid(g.nodeFromId(-1)), "Wrong validity check"); |
138 | 171 |
check(!g.valid(g.arcFromId(-1)), "Wrong validity check"); |
139 | 172 |
} |
140 | 173 |
|
141 | 174 |
template <typename Digraph> |
142 | 175 |
void checkDigraphValidityErase() { |
143 | 176 |
TEMPLATE_DIGRAPH_TYPEDEFS(Digraph); |
144 | 177 |
Digraph g; |
145 | 178 |
|
146 | 179 |
Node |
147 | 180 |
n1 = g.addNode(), |
148 | 181 |
n2 = g.addNode(), |
149 | 182 |
n3 = g.addNode(); |
150 | 183 |
|
151 | 184 |
Arc |
152 | 185 |
e1 = g.addArc(n1, n2), |
153 | 186 |
e2 = g.addArc(n2, n3); |
154 | 187 |
|
155 | 188 |
check(g.valid(n1), "Wrong validity check"); |
156 | 189 |
check(g.valid(e1), "Wrong validity check"); |
157 | 190 |
|
158 | 191 |
g.erase(n1); |
159 | 192 |
|
160 | 193 |
check(!g.valid(n1), "Wrong validity check"); |
161 | 194 |
check(g.valid(n2), "Wrong validity check"); |
162 | 195 |
check(g.valid(n3), "Wrong validity check"); |
163 | 196 |
check(!g.valid(e1), "Wrong validity check"); |
164 | 197 |
check(g.valid(e2), "Wrong validity check"); |
165 | 198 |
|
166 | 199 |
check(!g.valid(g.nodeFromId(-1)), "Wrong validity check"); |
167 | 200 |
check(!g.valid(g.arcFromId(-1)), "Wrong validity check"); |
168 | 201 |
} |
169 | 202 |
|
170 | 203 |
void checkDigraphs() { |
171 | 204 |
{ // Checking ListDigraph |
172 | 205 |
checkDigraph<ListDigraph>(); |
173 | 206 |
checkDigraphValidityErase<ListDigraph>(); |
174 | 207 |
} |
175 | 208 |
{ // Checking SmartDigraph |
176 | 209 |
checkDigraph<SmartDigraph>(); |
177 | 210 |
checkDigraphValidity<SmartDigraph>(); |
178 | 211 |
} |
212 |
{ // Checking FullDigraph |
|
213 |
checkFullDigraph(8); |
|
214 |
} |
|
179 | 215 |
} |
180 | 216 |
|
181 | 217 |
int main() { |
182 | 218 |
checkDigraphs(); |
183 | 219 |
checkConcepts(); |
184 | 220 |
return 0; |
185 | 221 |
} |
1 | 1 |
/* -*- mode: C++; indent-tabs-mode: nil; -*- |
2 | 2 |
* |
3 | 3 |
* This file is a part of LEMON, a generic C++ optimization library. |
4 | 4 |
* |
5 | 5 |
* Copyright (C) 2003-2008 |
6 | 6 |
* Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport |
7 | 7 |
* (Egervary Research Group on Combinatorial Optimization, EGRES). |
8 | 8 |
* |
9 | 9 |
* Permission to use, modify and distribute this software is granted |
10 | 10 |
* provided that this copyright notice appears in all copies. For |
11 | 11 |
* precise terms see the accompanying LICENSE file. |
12 | 12 |
* |
13 | 13 |
* This software is provided "AS IS" with no warranty of any kind, |
14 | 14 |
* express or implied, and with no claim as to its suitability for any |
15 | 15 |
* purpose. |
16 | 16 |
* |
17 | 17 |
*/ |
18 | 18 |
|
19 | 19 |
#include <lemon/concepts/graph.h> |
20 | 20 |
#include <lemon/list_graph.h> |
21 | 21 |
#include <lemon/smart_graph.h> |
22 |
|
|
22 |
#include <lemon/full_graph.h> |
|
23 | 23 |
#include <lemon/grid_graph.h> |
24 | 24 |
|
25 | 25 |
#include "test_tools.h" |
26 | 26 |
#include "graph_test.h" |
27 | 27 |
|
28 | 28 |
using namespace lemon; |
29 | 29 |
using namespace lemon::concepts; |
30 | 30 |
|
31 | 31 |
template <class Graph> |
32 | 32 |
void checkGraph() { |
33 | 33 |
TEMPLATE_GRAPH_TYPEDEFS(Graph); |
34 | 34 |
|
35 | 35 |
Graph G; |
36 | 36 |
checkGraphNodeList(G, 0); |
37 | 37 |
checkGraphEdgeList(G, 0); |
38 | 38 |
|
39 | 39 |
Node |
40 | 40 |
n1 = G.addNode(), |
41 | 41 |
n2 = G.addNode(), |
42 | 42 |
n3 = G.addNode(); |
43 | 43 |
checkGraphNodeList(G, 3); |
44 | 44 |
checkGraphEdgeList(G, 0); |
45 | 45 |
|
46 | 46 |
Edge e1 = G.addEdge(n1, n2); |
47 | 47 |
check((G.u(e1) == n1 && G.v(e1) == n2) || (G.u(e1) == n2 && G.v(e1) == n1), |
48 | 48 |
"Wrong edge"); |
49 | 49 |
checkGraphNodeList(G, 3); |
50 | 50 |
checkGraphArcList(G, 2); |
51 | 51 |
checkGraphEdgeList(G, 1); |
52 | 52 |
|
53 | 53 |
checkGraphOutArcList(G, n1, 1); |
54 | 54 |
checkGraphOutArcList(G, n2, 1); |
55 | 55 |
checkGraphOutArcList(G, n3, 0); |
56 | 56 |
|
57 | 57 |
checkGraphInArcList(G, n1, 1); |
58 | 58 |
checkGraphInArcList(G, n2, 1); |
59 | 59 |
checkGraphInArcList(G, n3, 0); |
60 | 60 |
|
61 | 61 |
checkGraphIncEdgeList(G, n1, 1); |
62 | 62 |
checkGraphIncEdgeList(G, n2, 1); |
63 | 63 |
checkGraphIncEdgeList(G, n3, 0); |
64 | 64 |
|
65 | 65 |
checkGraphConArcList(G, 2); |
66 | 66 |
checkGraphConEdgeList(G, 1); |
67 | 67 |
|
68 | 68 |
Edge e2 = G.addEdge(n2, n1), e3 = G.addEdge(n2, n3); |
69 | 69 |
checkGraphNodeList(G, 3); |
70 | 70 |
checkGraphArcList(G, 6); |
71 | 71 |
checkGraphEdgeList(G, 3); |
72 | 72 |
|
73 | 73 |
checkGraphOutArcList(G, n1, 2); |
74 | 74 |
checkGraphOutArcList(G, n2, 3); |
75 | 75 |
checkGraphOutArcList(G, n3, 1); |
76 | 76 |
|
77 | 77 |
checkGraphInArcList(G, n1, 2); |
78 | 78 |
checkGraphInArcList(G, n2, 3); |
79 | 79 |
checkGraphInArcList(G, n3, 1); |
80 | 80 |
|
81 | 81 |
checkGraphIncEdgeList(G, n1, 2); |
82 | 82 |
checkGraphIncEdgeList(G, n2, 3); |
83 | 83 |
checkGraphIncEdgeList(G, n3, 1); |
84 | 84 |
|
85 | 85 |
checkGraphConArcList(G, 6); |
86 | 86 |
checkGraphConEdgeList(G, 3); |
87 | 87 |
|
88 | 88 |
checkArcDirections(G); |
89 | 89 |
|
90 | 90 |
checkNodeIds(G); |
91 | 91 |
checkArcIds(G); |
92 | 92 |
checkEdgeIds(G); |
93 | 93 |
checkGraphNodeMap(G); |
94 | 94 |
checkGraphArcMap(G); |
95 | 95 |
checkGraphEdgeMap(G); |
96 | 96 |
} |
97 | 97 |
|
98 |
void checkFullGraph(int num) { |
|
99 |
typedef FullGraph Graph; |
|
100 |
GRAPH_TYPEDEFS(Graph); |
|
101 |
|
|
102 |
Graph G(num); |
|
103 |
checkGraphNodeList(G, num); |
|
104 |
checkGraphEdgeList(G, num * (num - 1) / 2); |
|
105 |
|
|
106 |
for (NodeIt n(G); n != INVALID; ++n) { |
|
107 |
checkGraphOutArcList(G, n, num - 1); |
|
108 |
checkGraphInArcList(G, n, num - 1); |
|
109 |
checkGraphIncEdgeList(G, n, num - 1); |
|
110 |
} |
|
111 |
|
|
112 |
checkGraphConArcList(G, num * (num - 1)); |
|
113 |
checkGraphConEdgeList(G, num * (num - 1) / 2); |
|
114 |
|
|
115 |
checkArcDirections(G); |
|
116 |
|
|
117 |
checkNodeIds(G); |
|
118 |
checkArcIds(G); |
|
119 |
checkEdgeIds(G); |
|
120 |
checkGraphNodeMap(G); |
|
121 |
checkGraphArcMap(G); |
|
122 |
checkGraphEdgeMap(G); |
|
123 |
|
|
124 |
|
|
125 |
for (int i = 0; i < G.nodeNum(); ++i) { |
|
126 |
check(G.index(G(i)) == i, "Wrong index"); |
|
127 |
} |
|
128 |
|
|
129 |
for (NodeIt u(G); u != INVALID; ++u) { |
|
130 |
for (NodeIt v(G); v != INVALID; ++v) { |
|
131 |
Edge e = G.edge(u, v); |
|
132 |
Arc a = G.arc(u, v); |
|
133 |
if (u == v) { |
|
134 |
check(e == INVALID, "Wrong edge lookup"); |
|
135 |
check(a == INVALID, "Wrong arc lookup"); |
|
136 |
} else { |
|
137 |
check((G.u(e) == u && G.v(e) == v) || |
|
138 |
(G.u(e) == v && G.v(e) == u), "Wrong edge lookup"); |
|
139 |
check(G.source(a) == u && G.target(a) == v, "Wrong arc lookup"); |
|
140 |
} |
|
141 |
} |
|
142 |
} |
|
143 |
} |
|
144 |
|
|
98 | 145 |
void checkConcepts() { |
99 | 146 |
{ // Checking graph components |
100 | 147 |
checkConcept<BaseGraphComponent, BaseGraphComponent >(); |
101 | 148 |
|
102 | 149 |
checkConcept<IDableGraphComponent<>, |
103 | 150 |
IDableGraphComponent<> >(); |
104 | 151 |
|
105 | 152 |
checkConcept<IterableGraphComponent<>, |
106 | 153 |
IterableGraphComponent<> >(); |
107 | 154 |
|
108 | 155 |
checkConcept<MappableGraphComponent<>, |
109 | 156 |
MappableGraphComponent<> >(); |
110 | 157 |
} |
111 | 158 |
{ // Checking skeleton graph |
112 | 159 |
checkConcept<Graph, Graph>(); |
113 | 160 |
} |
114 | 161 |
{ // Checking ListGraph |
115 | 162 |
checkConcept<Graph, ListGraph>(); |
116 | 163 |
checkConcept<AlterableGraphComponent<>, ListGraph>(); |
117 | 164 |
checkConcept<ExtendableGraphComponent<>, ListGraph>(); |
118 | 165 |
checkConcept<ClearableGraphComponent<>, ListGraph>(); |
119 | 166 |
checkConcept<ErasableGraphComponent<>, ListGraph>(); |
120 | 167 |
} |
121 | 168 |
{ // Checking SmartGraph |
122 | 169 |
checkConcept<Graph, SmartGraph>(); |
123 | 170 |
checkConcept<AlterableGraphComponent<>, SmartGraph>(); |
124 | 171 |
checkConcept<ExtendableGraphComponent<>, SmartGraph>(); |
125 | 172 |
checkConcept<ClearableGraphComponent<>, SmartGraph>(); |
126 | 173 |
} |
127 |
// { // Checking FullGraph |
|
128 |
// checkConcept<Graph, FullGraph>(); |
|
129 |
// checkGraphIterators<FullGraph>(); |
|
130 |
// } |
|
174 |
{ // Checking FullGraph |
|
175 |
checkConcept<Graph, FullGraph>(); |
|
176 |
} |
|
131 | 177 |
{ // Checking GridGraph |
132 | 178 |
checkConcept<Graph, GridGraph>(); |
133 | 179 |
} |
134 | 180 |
} |
135 | 181 |
|
136 | 182 |
template <typename Graph> |
137 | 183 |
void checkGraphValidity() { |
138 | 184 |
TEMPLATE_GRAPH_TYPEDEFS(Graph); |
139 | 185 |
Graph g; |
140 | 186 |
|
141 | 187 |
Node |
142 | 188 |
n1 = g.addNode(), |
143 | 189 |
n2 = g.addNode(), |
144 | 190 |
n3 = g.addNode(); |
145 | 191 |
|
146 | 192 |
Edge |
147 | 193 |
e1 = g.addEdge(n1, n2), |
148 | 194 |
e2 = g.addEdge(n2, n3); |
149 | 195 |
|
150 | 196 |
check(g.valid(n1), "Wrong validity check"); |
151 | 197 |
check(g.valid(e1), "Wrong validity check"); |
152 | 198 |
check(g.valid(g.direct(e1, true)), "Wrong validity check"); |
153 | 199 |
|
154 | 200 |
check(!g.valid(g.nodeFromId(-1)), "Wrong validity check"); |
155 | 201 |
check(!g.valid(g.edgeFromId(-1)), "Wrong validity check"); |
156 | 202 |
check(!g.valid(g.arcFromId(-1)), "Wrong validity check"); |
157 | 203 |
} |
158 | 204 |
|
159 | 205 |
template <typename Graph> |
160 | 206 |
void checkGraphValidityErase() { |
161 | 207 |
TEMPLATE_GRAPH_TYPEDEFS(Graph); |
162 | 208 |
Graph g; |
163 | 209 |
|
164 | 210 |
Node |
165 | 211 |
n1 = g.addNode(), |
166 | 212 |
n2 = g.addNode(), |
167 | 213 |
n3 = g.addNode(); |
168 | 214 |
|
169 | 215 |
Edge |
170 | 216 |
e1 = g.addEdge(n1, n2), |
171 | 217 |
e2 = g.addEdge(n2, n3); |
172 | 218 |
|
173 | 219 |
check(g.valid(n1), "Wrong validity check"); |
174 | 220 |
check(g.valid(e1), "Wrong validity check"); |
175 | 221 |
check(g.valid(g.direct(e1, true)), "Wrong validity check"); |
176 | 222 |
|
177 | 223 |
g.erase(n1); |
178 | 224 |
|
179 | 225 |
check(!g.valid(n1), "Wrong validity check"); |
180 | 226 |
check(g.valid(n2), "Wrong validity check"); |
181 | 227 |
check(g.valid(n3), "Wrong validity check"); |
182 | 228 |
check(!g.valid(e1), "Wrong validity check"); |
183 | 229 |
check(g.valid(e2), "Wrong validity check"); |
184 | 230 |
|
185 | 231 |
check(!g.valid(g.nodeFromId(-1)), "Wrong validity check"); |
186 | 232 |
check(!g.valid(g.edgeFromId(-1)), "Wrong validity check"); |
187 | 233 |
check(!g.valid(g.arcFromId(-1)), "Wrong validity check"); |
188 | 234 |
} |
189 | 235 |
|
190 | 236 |
void checkGridGraph(int width, int height) { |
191 | 237 |
typedef GridGraph Graph; |
192 | 238 |
GRAPH_TYPEDEFS(Graph); |
193 | 239 |
Graph G(width, height); |
194 | 240 |
|
... | ... |
@@ -214,83 +260,82 @@ |
214 | 260 |
|
215 | 261 |
for (int j = 0; j < height; ++j) { |
216 | 262 |
for (int i = 1; i < width; ++i) { |
217 | 263 |
check(G.source(G.left(G(i, j))) == G(i, j), "Wrong left"); |
218 | 264 |
check(G.target(G.left(G(i, j))) == G(i - 1, j), "Wrong left"); |
219 | 265 |
} |
220 | 266 |
check(G.left(G(0, j)) == INVALID, "Wrong left"); |
221 | 267 |
} |
222 | 268 |
|
223 | 269 |
for (int i = 0; i < width; ++i) { |
224 | 270 |
for (int j = 0; j < height - 1; ++j) { |
225 | 271 |
check(G.source(G.up(G(i, j))) == G(i, j), "Wrong up"); |
226 | 272 |
check(G.target(G.up(G(i, j))) == G(i, j + 1), "Wrong up"); |
227 | 273 |
} |
228 | 274 |
check(G.up(G(i, height - 1)) == INVALID, "Wrong up"); |
229 | 275 |
} |
230 | 276 |
|
231 | 277 |
for (int i = 0; i < width; ++i) { |
232 | 278 |
for (int j = 1; j < height; ++j) { |
233 | 279 |
check(G.source(G.down(G(i, j))) == G(i, j), "Wrong down"); |
234 | 280 |
check(G.target(G.down(G(i, j))) == G(i, j - 1), "Wrong down"); |
235 | 281 |
} |
236 | 282 |
check(G.down(G(i, 0)) == INVALID, "Wrong down"); |
237 | 283 |
} |
238 | 284 |
|
239 | 285 |
checkGraphNodeList(G, width * height); |
240 | 286 |
checkGraphEdgeList(G, width * (height - 1) + (width - 1) * height); |
241 | 287 |
checkGraphArcList(G, 2 * (width * (height - 1) + (width - 1) * height)); |
242 | 288 |
|
243 | 289 |
for (NodeIt n(G); n != INVALID; ++n) { |
244 | 290 |
int nb = 4; |
245 | 291 |
if (G.col(n) == 0) --nb; |
246 | 292 |
if (G.col(n) == width - 1) --nb; |
247 | 293 |
if (G.row(n) == 0) --nb; |
248 | 294 |
if (G.row(n) == height - 1) --nb; |
249 | 295 |
|
250 | 296 |
checkGraphOutArcList(G, n, nb); |
251 | 297 |
checkGraphInArcList(G, n, nb); |
252 | 298 |
checkGraphIncEdgeList(G, n, nb); |
253 | 299 |
} |
254 | 300 |
|
255 | 301 |
checkArcDirections(G); |
256 | 302 |
|
257 | 303 |
checkGraphConArcList(G, 2 * (width * (height - 1) + (width - 1) * height)); |
258 | 304 |
checkGraphConEdgeList(G, width * (height - 1) + (width - 1) * height); |
259 | 305 |
|
260 | 306 |
checkNodeIds(G); |
261 | 307 |
checkArcIds(G); |
262 | 308 |
checkEdgeIds(G); |
263 | 309 |
checkGraphNodeMap(G); |
264 | 310 |
checkGraphArcMap(G); |
265 | 311 |
checkGraphEdgeMap(G); |
266 | 312 |
|
267 | 313 |
} |
268 | 314 |
|
269 | 315 |
void checkGraphs() { |
270 | 316 |
{ // Checking ListGraph |
271 | 317 |
checkGraph<ListGraph>(); |
272 | 318 |
checkGraphValidityErase<ListGraph>(); |
273 | 319 |
} |
274 | 320 |
{ // Checking SmartGraph |
275 | 321 |
checkGraph<SmartGraph>(); |
276 | 322 |
checkGraphValidity<SmartGraph>(); |
277 | 323 |
} |
278 |
// { // Checking FullGraph |
|
279 |
// FullGraph g(5); |
|
280 |
// checkGraphNodeList(g, 5); |
|
281 |
// checkGraphEdgeList(g, 10); |
|
282 |
// |
|
324 |
{ // Checking FullGraph |
|
325 |
checkFullGraph(7); |
|
326 |
checkFullGraph(8); |
|
327 |
} |
|
283 | 328 |
{ // Checking GridGraph |
284 | 329 |
checkGridGraph(5, 8); |
285 | 330 |
checkGridGraph(8, 5); |
286 | 331 |
checkGridGraph(5, 5); |
287 | 332 |
checkGridGraph(0, 0); |
288 | 333 |
checkGridGraph(1, 1); |
289 | 334 |
} |
290 | 335 |
} |
291 | 336 |
|
292 | 337 |
int main() { |
293 | 338 |
checkConcepts(); |
294 | 339 |
checkGraphs(); |
295 | 340 |
return 0; |
296 | 341 |
} |
0 comments (0 inline)