0
2
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 HYPERCUBE_GRAPH_H |
|
| 20 |
#define HYPERCUBE_GRAPH_H |
|
| 21 |
|
|
| 22 |
#include <iostream> |
|
| 23 |
#include <vector> |
|
| 24 |
#include <lemon/core.h> |
|
| 25 |
#include <lemon/error.h> |
|
| 26 |
|
|
| 27 |
#include <lemon/bits/base_extender.h> |
|
| 28 |
#include <lemon/bits/graph_extender.h> |
|
| 29 |
|
|
| 30 |
///\ingroup graphs |
|
| 31 |
///\file |
|
| 32 |
///\brief HypercubeDigraph class. |
|
| 33 |
|
|
| 34 |
namespace lemon {
|
|
| 35 |
|
|
| 36 |
class HypercubeDigraphBase {
|
|
| 37 |
|
|
| 38 |
public: |
|
| 39 |
|
|
| 40 |
typedef HypercubeDigraphBase Digraph; |
|
| 41 |
|
|
| 42 |
class Node; |
|
| 43 |
class Arc; |
|
| 44 |
|
|
| 45 |
public: |
|
| 46 |
|
|
| 47 |
HypercubeDigraphBase() {}
|
|
| 48 |
|
|
| 49 |
protected: |
|
| 50 |
|
|
| 51 |
void construct(int dim) {
|
|
| 52 |
_dim = dim; |
|
| 53 |
_nodeNum = 1 << dim; |
|
| 54 |
} |
|
| 55 |
|
|
| 56 |
public: |
|
| 57 |
|
|
| 58 |
typedef True NodeNumTag; |
|
| 59 |
typedef True ArcNumTag; |
|
| 60 |
|
|
| 61 |
int nodeNum() const { return _nodeNum; }
|
|
| 62 |
int arcNum() const { return _nodeNum * _dim; }
|
|
| 63 |
|
|
| 64 |
int maxNodeId() const { return nodeNum() - 1; }
|
|
| 65 |
int maxArcId() const { return arcNum() - 1; }
|
|
| 66 |
|
|
| 67 |
Node source(Arc e) const {
|
|
| 68 |
return e.id / _dim; |
|
| 69 |
} |
|
| 70 |
|
|
| 71 |
Node target(Arc e) const {
|
|
| 72 |
return (e.id / _dim) ^ (1 << (e.id % _dim)); |
|
| 73 |
} |
|
| 74 |
|
|
| 75 |
static int id(Node v) { return v.id; }
|
|
| 76 |
static int id(Arc e) { return e.id; }
|
|
| 77 |
|
|
| 78 |
static Node nodeFromId(int id) { return Node(id); }
|
|
| 79 |
|
|
| 80 |
static Arc arcFromId(int id) { return Arc(id); }
|
|
| 81 |
|
|
| 82 |
class Node {
|
|
| 83 |
friend class HypercubeDigraphBase; |
|
| 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 HypercubeDigraphBase; |
|
| 97 |
protected: |
|
| 98 |
int id; |
|
| 99 |
Arc(int _id) : id(_id) {}
|
|
| 100 |
public: |
|
| 101 |
Arc() { }
|
|
| 102 |
Arc (Invalid) { id = -1; }
|
|
| 103 |
bool operator==(const Arc arc) const { return id == arc.id; }
|
|
| 104 |
bool operator!=(const Arc arc) const { return id != arc.id; }
|
|
| 105 |
bool operator<(const Arc arc) const { return id < arc.id; }
|
|
| 106 |
}; |
|
| 107 |
|
|
| 108 |
void first(Node& node) const {
|
|
| 109 |
node.id = nodeNum() - 1; |
|
| 110 |
} |
|
| 111 |
|
|
| 112 |
static void next(Node& node) {
|
|
| 113 |
--node.id; |
|
| 114 |
} |
|
| 115 |
|
|
| 116 |
void first(Arc& arc) const {
|
|
| 117 |
arc.id = arcNum() - 1; |
|
| 118 |
} |
|
| 119 |
|
|
| 120 |
static void next(Arc& arc) {
|
|
| 121 |
--arc.id; |
|
| 122 |
} |
|
| 123 |
|
|
| 124 |
void firstOut(Arc& arc, const Node& node) const {
|
|
| 125 |
arc.id = node.id * _dim; |
|
| 126 |
} |
|
| 127 |
|
|
| 128 |
void nextOut(Arc& arc) const {
|
|
| 129 |
++arc.id; |
|
| 130 |
if (arc.id % _dim == 0) arc.id = -1; |
|
| 131 |
} |
|
| 132 |
|
|
| 133 |
void firstIn(Arc& arc, const Node& node) const {
|
|
| 134 |
arc.id = (node.id ^ 1) * _dim; |
|
| 135 |
} |
|
| 136 |
|
|
| 137 |
void nextIn(Arc& arc) const {
|
|
| 138 |
int cnt = arc.id % _dim; |
|
| 139 |
if ((cnt + 1) % _dim == 0) {
|
|
| 140 |
arc.id = -1; |
|
| 141 |
} else {
|
|
| 142 |
arc.id = ((arc.id / _dim) ^ ((1 << cnt) * 3)) * _dim + cnt + 1; |
|
| 143 |
} |
|
| 144 |
} |
|
| 145 |
|
|
| 146 |
int dimension() const {
|
|
| 147 |
return _dim; |
|
| 148 |
} |
|
| 149 |
|
|
| 150 |
bool projection(Node node, int n) const {
|
|
| 151 |
return static_cast<bool>(node.id & (1 << n)); |
|
| 152 |
} |
|
| 153 |
|
|
| 154 |
int dimension(Arc arc) const {
|
|
| 155 |
return arc.id % _dim; |
|
| 156 |
} |
|
| 157 |
|
|
| 158 |
int index(Node node) const {
|
|
| 159 |
return node.id; |
|
| 160 |
} |
|
| 161 |
|
|
| 162 |
Node operator()(int ix) const {
|
|
| 163 |
return Node(ix); |
|
| 164 |
} |
|
| 165 |
|
|
| 166 |
private: |
|
| 167 |
int _dim, _nodeNum; |
|
| 168 |
}; |
|
| 169 |
|
|
| 170 |
|
|
| 171 |
typedef DigraphExtender<HypercubeDigraphBase> ExtendedHypercubeDigraphBase; |
|
| 172 |
|
|
| 173 |
/// \ingroup digraphs |
|
| 174 |
/// |
|
| 175 |
/// \brief Hypercube digraph class |
|
| 176 |
/// |
|
| 177 |
/// This class implements a special digraph type. The nodes of the |
|
| 178 |
/// digraph are indiced with integers with at most \c dim binary digits. |
|
| 179 |
/// Two nodes are connected in the digraph if the indices differ only |
|
| 180 |
/// on one position in the binary form. |
|
| 181 |
/// |
|
| 182 |
/// \note The type of the \c ids is chosen to \c int because efficiency |
|
| 183 |
/// reasons. Thus the maximum dimension of this implementation is 26. |
|
| 184 |
/// |
|
| 185 |
/// The digraph type is fully conform to the \ref concepts::Digraph |
|
| 186 |
/// concept but it does not conform to \ref concepts::Graph. |
|
| 187 |
class HypercubeDigraph : public ExtendedHypercubeDigraphBase {
|
|
| 188 |
public: |
|
| 189 |
|
|
| 190 |
typedef ExtendedHypercubeDigraphBase Parent; |
|
| 191 |
|
|
| 192 |
/// \brief Construct a hypercube digraph with \c dim dimension. |
|
| 193 |
/// |
|
| 194 |
/// Construct a hypercube digraph with \c dim dimension. |
|
| 195 |
HypercubeDigraph(int dim) { construct(dim); }
|
|
| 196 |
|
|
| 197 |
/// \brief Gives back the number of the dimensions. |
|
| 198 |
/// |
|
| 199 |
/// Gives back the number of the dimensions. |
|
| 200 |
int dimension() const {
|
|
| 201 |
return Parent::dimension(); |
|
| 202 |
} |
|
| 203 |
|
|
| 204 |
/// \brief Returns true if the n'th bit of the node is one. |
|
| 205 |
/// |
|
| 206 |
/// Returns true if the n'th bit of the node is one. |
|
| 207 |
bool projection(Node node, int n) const {
|
|
| 208 |
return Parent::projection(node, n); |
|
| 209 |
} |
|
| 210 |
|
|
| 211 |
/// \brief The dimension id of the arc. |
|
| 212 |
/// |
|
| 213 |
/// It returns the dimension id of the arc. It can |
|
| 214 |
/// be in the \f$ \{0, 1, \dots, dim-1\} \f$ interval.
|
|
| 215 |
int dimension(Arc arc) const {
|
|
| 216 |
return Parent::dimension(arc); |
|
| 217 |
} |
|
| 218 |
|
|
| 219 |
/// \brief Gives back the index of the node. |
|
| 220 |
/// |
|
| 221 |
/// Gives back the index of the node. The lower bits of the |
|
| 222 |
/// integer describes the node. |
|
| 223 |
int index(Node node) const {
|
|
| 224 |
return Parent::index(node); |
|
| 225 |
} |
|
| 226 |
|
|
| 227 |
/// \brief Gives back the node by its index. |
|
| 228 |
/// |
|
| 229 |
/// Gives back the node by its index. |
|
| 230 |
Node operator()(int ix) const {
|
|
| 231 |
return Parent::operator()(ix); |
|
| 232 |
} |
|
| 233 |
|
|
| 234 |
/// \brief Number of nodes. |
|
| 235 |
int nodeNum() const { return Parent::nodeNum(); }
|
|
| 236 |
/// \brief Number of arcs. |
|
| 237 |
int arcNum() const { return Parent::arcNum(); }
|
|
| 238 |
|
|
| 239 |
/// \brief Linear combination map. |
|
| 240 |
/// |
|
| 241 |
/// It makes possible to give back a linear combination |
|
| 242 |
/// for each node. This function works like the \c std::accumulate |
|
| 243 |
/// so it accumulates the \c bf binary function with the \c fv |
|
| 244 |
/// first value. The map accumulates only on that dimensions where |
|
| 245 |
/// the node's index is one. The accumulated values should be |
|
| 246 |
/// given by the \c begin and \c end iterators and the length of this |
|
| 247 |
/// range should be equal to the dimension number of the digraph. |
|
| 248 |
/// |
|
| 249 |
///\code |
|
| 250 |
/// const int DIM = 3; |
|
| 251 |
/// HypercubeDigraph digraph(DIM); |
|
| 252 |
/// dim2::Point<double> base[DIM]; |
|
| 253 |
/// for (int k = 0; k < DIM; ++k) {
|
|
| 254 |
/// base[k].x = rnd(); |
|
| 255 |
/// base[k].y = rnd(); |
|
| 256 |
/// } |
|
| 257 |
/// HypercubeDigraph::HyperMap<dim2::Point<double> > |
|
| 258 |
/// pos(digraph, base, base + DIM, dim2::Point<double>(0.0, 0.0)); |
|
| 259 |
///\endcode |
|
| 260 |
/// |
|
| 261 |
/// \see HypercubeDigraph |
|
| 262 |
template <typename T, typename BF = std::plus<T> > |
|
| 263 |
class HyperMap {
|
|
| 264 |
public: |
|
| 265 |
|
|
| 266 |
typedef Node Key; |
|
| 267 |
typedef T Value; |
|
| 268 |
|
|
| 269 |
|
|
| 270 |
/// \brief Constructor for HyperMap. |
|
| 271 |
/// |
|
| 272 |
/// Construct a HyperMap for the given digraph. The accumulated values |
|
| 273 |
/// should be given by the \c begin and \c end iterators and the length |
|
| 274 |
/// of this range should be equal to the dimension number of the digraph. |
|
| 275 |
/// |
|
| 276 |
/// This function accumulates the \c bf binary function with |
|
| 277 |
/// the \c fv first value. The map accumulates only on that dimensions |
|
| 278 |
/// where the node's index is one. |
|
| 279 |
template <typename It> |
|
| 280 |
HyperMap(const Digraph& digraph, It begin, It end, |
|
| 281 |
T fv = 0.0, const BF& bf = BF()) |
|
| 282 |
: _graph(digraph), _values(begin, end), _first_value(fv), _bin_func(bf) |
|
| 283 |
{
|
|
| 284 |
LEMON_ASSERT(_values.size() == digraph.dimension(), |
|
| 285 |
"Wrong size of dimension"); |
|
| 286 |
} |
|
| 287 |
|
|
| 288 |
/// \brief Gives back the partial accumulated value. |
|
| 289 |
/// |
|
| 290 |
/// Gives back the partial accumulated value. |
|
| 291 |
Value operator[](Key k) const {
|
|
| 292 |
Value val = _first_value; |
|
| 293 |
int id = _graph.index(k); |
|
| 294 |
int n = 0; |
|
| 295 |
while (id != 0) {
|
|
| 296 |
if (id & 1) {
|
|
| 297 |
val = _bin_func(val, _values[n]); |
|
| 298 |
} |
|
| 299 |
id >>= 1; |
|
| 300 |
++n; |
|
| 301 |
} |
|
| 302 |
return val; |
|
| 303 |
} |
|
| 304 |
|
|
| 305 |
private: |
|
| 306 |
const Digraph& _graph; |
|
| 307 |
std::vector<T> _values; |
|
| 308 |
T _first_value; |
|
| 309 |
BF _bin_func; |
|
| 310 |
}; |
|
| 311 |
|
|
| 312 |
}; |
|
| 313 |
|
|
| 314 |
} |
|
| 315 |
|
|
| 316 |
#endif |
| ... | ... |
@@ -10,48 +10,49 @@ |
| 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 | 31 |
lemon/full_graph.h \ |
| 32 | 32 |
lemon/graph_to_eps.h \ |
| 33 | 33 |
lemon/grid_graph.h \ |
| 34 |
lemon/hypercube_graph.h \ |
|
| 34 | 35 |
lemon/kruskal.h \ |
| 35 | 36 |
lemon/lgf_reader.h \ |
| 36 | 37 |
lemon/lgf_writer.h \ |
| 37 | 38 |
lemon/list_graph.h \ |
| 38 | 39 |
lemon/maps.h \ |
| 39 | 40 |
lemon/math.h \ |
| 40 | 41 |
lemon/max_matching.h \ |
| 41 | 42 |
lemon/nauty_reader.h \ |
| 42 | 43 |
lemon/path.h \ |
| 43 | 44 |
lemon/random.h \ |
| 44 | 45 |
lemon/smart_graph.h \ |
| 45 | 46 |
lemon/suurballe.h \ |
| 46 | 47 |
lemon/time_measure.h \ |
| 47 | 48 |
lemon/tolerance.h \ |
| 48 | 49 |
lemon/unionfind.h |
| 49 | 50 |
|
| 50 | 51 |
bits_HEADERS += \ |
| 51 | 52 |
lemon/bits/alteration_notifier.h \ |
| 52 | 53 |
lemon/bits/array_map.h \ |
| 53 | 54 |
lemon/bits/base_extender.h \ |
| 54 | 55 |
lemon/bits/bezier.h \ |
| 55 | 56 |
lemon/bits/default_map.h \ |
| 56 | 57 |
lemon/bits/enable_if.h \ |
| 57 | 58 |
lemon/bits/graph_extender.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"); |
| ... | ... |
@@ -91,84 +91,113 @@ |
| 91 | 91 |
checkGraphOutArcList(G, n, num); |
| 92 | 92 |
checkGraphInArcList(G, n, num); |
| 93 | 93 |
} |
| 94 | 94 |
|
| 95 | 95 |
checkGraphConArcList(G, num * num); |
| 96 | 96 |
|
| 97 | 97 |
checkNodeIds(G); |
| 98 | 98 |
checkArcIds(G); |
| 99 | 99 |
checkGraphNodeMap(G); |
| 100 | 100 |
checkGraphArcMap(G); |
| 101 | 101 |
|
| 102 | 102 |
for (int i = 0; i < G.nodeNum(); ++i) {
|
| 103 | 103 |
check(G.index(G(i)) == i, "Wrong index"); |
| 104 | 104 |
} |
| 105 | 105 |
|
| 106 | 106 |
for (NodeIt s(G); s != INVALID; ++s) {
|
| 107 | 107 |
for (NodeIt t(G); t != INVALID; ++t) {
|
| 108 | 108 |
Arc a = G.arc(s, t); |
| 109 | 109 |
check(G.source(a) == s && G.target(a) == t, "Wrong arc lookup"); |
| 110 | 110 |
} |
| 111 | 111 |
} |
| 112 | 112 |
|
| 113 | 113 |
} |
| 114 | 114 |
|
| 115 |
void checkHypercubeDigraph(int dim) {
|
|
| 116 |
DIGRAPH_TYPEDEFS(HypercubeDigraph); |
|
| 117 |
|
|
| 118 |
HypercubeDigraph G(dim); |
|
| 119 |
checkGraphNodeList(G, 1 << dim); |
|
| 120 |
checkGraphArcList(G, (1 << dim) * dim); |
|
| 121 |
|
|
| 122 |
Node n = G.nodeFromId(dim); |
|
| 123 |
|
|
| 124 |
checkGraphOutArcList(G, n, dim); |
|
| 125 |
for (OutArcIt a(G, n); a != INVALID; ++a) |
|
| 126 |
check(G.source(a) == n && |
|
| 127 |
G.id(G.target(a)) == G.id(n) ^ (1 << G.dimension(a)), |
|
| 128 |
"Wrong arc"); |
|
| 129 |
|
|
| 130 |
checkGraphInArcList(G, n, dim); |
|
| 131 |
for (InArcIt a(G, n); a != INVALID; ++a) |
|
| 132 |
check(G.target(a) == n && |
|
| 133 |
G.id(G.source(a)) == G.id(n) ^ (1 << G.dimension(a)), |
|
| 134 |
"Wrong arc"); |
|
| 135 |
|
|
| 136 |
checkGraphConArcList(G, (1 << dim) * dim); |
|
| 137 |
|
|
| 138 |
checkNodeIds(G); |
|
| 139 |
checkArcIds(G); |
|
| 140 |
checkGraphNodeMap(G); |
|
| 141 |
checkGraphArcMap(G); |
|
| 142 |
} |
|
| 143 |
|
|
| 115 | 144 |
|
| 116 | 145 |
void checkConcepts() {
|
| 117 | 146 |
{ // Checking digraph components
|
| 118 | 147 |
checkConcept<BaseDigraphComponent, BaseDigraphComponent >(); |
| 119 | 148 |
|
| 120 | 149 |
checkConcept<IDableDigraphComponent<>, |
| 121 | 150 |
IDableDigraphComponent<> >(); |
| 122 | 151 |
|
| 123 | 152 |
checkConcept<IterableDigraphComponent<>, |
| 124 | 153 |
IterableDigraphComponent<> >(); |
| 125 | 154 |
|
| 126 | 155 |
checkConcept<MappableDigraphComponent<>, |
| 127 | 156 |
MappableDigraphComponent<> >(); |
| 128 | 157 |
} |
| 129 | 158 |
{ // Checking skeleton digraph
|
| 130 | 159 |
checkConcept<Digraph, Digraph>(); |
| 131 | 160 |
} |
| 132 | 161 |
{ // Checking ListDigraph
|
| 133 | 162 |
checkConcept<Digraph, ListDigraph>(); |
| 134 | 163 |
checkConcept<AlterableDigraphComponent<>, ListDigraph>(); |
| 135 | 164 |
checkConcept<ExtendableDigraphComponent<>, ListDigraph>(); |
| 136 | 165 |
checkConcept<ClearableDigraphComponent<>, ListDigraph>(); |
| 137 | 166 |
checkConcept<ErasableDigraphComponent<>, ListDigraph>(); |
| 138 | 167 |
} |
| 139 | 168 |
{ // Checking SmartDigraph
|
| 140 | 169 |
checkConcept<Digraph, SmartDigraph>(); |
| 141 | 170 |
checkConcept<AlterableDigraphComponent<>, SmartDigraph>(); |
| 142 | 171 |
checkConcept<ExtendableDigraphComponent<>, SmartDigraph>(); |
| 143 | 172 |
checkConcept<ClearableDigraphComponent<>, SmartDigraph>(); |
| 144 | 173 |
} |
| 145 | 174 |
{ // Checking FullDigraph
|
| 146 | 175 |
checkConcept<Digraph, FullDigraph>(); |
| 147 | 176 |
} |
| 148 |
// { // Checking HyperCubeDigraph
|
|
| 149 |
// checkConcept<Digraph, HyperCubeDigraph>(); |
|
| 150 |
// |
|
| 177 |
{ // Checking HypercubeDigraph
|
|
| 178 |
checkConcept<Digraph, HypercubeDigraph>(); |
|
| 179 |
} |
|
| 151 | 180 |
} |
| 152 | 181 |
|
| 153 | 182 |
template <typename Digraph> |
| 154 | 183 |
void checkDigraphValidity() {
|
| 155 | 184 |
TEMPLATE_DIGRAPH_TYPEDEFS(Digraph); |
| 156 | 185 |
Digraph g; |
| 157 | 186 |
|
| 158 | 187 |
Node |
| 159 | 188 |
n1 = g.addNode(), |
| 160 | 189 |
n2 = g.addNode(), |
| 161 | 190 |
n3 = g.addNode(); |
| 162 | 191 |
|
| 163 | 192 |
Arc |
| 164 | 193 |
e1 = g.addArc(n1, n2), |
| 165 | 194 |
e2 = g.addArc(n2, n3); |
| 166 | 195 |
|
| 167 | 196 |
check(g.valid(n1), "Wrong validity check"); |
| 168 | 197 |
check(g.valid(e1), "Wrong validity check"); |
| 169 | 198 |
|
| 170 | 199 |
check(!g.valid(g.nodeFromId(-1)), "Wrong validity check"); |
| 171 | 200 |
check(!g.valid(g.arcFromId(-1)), "Wrong validity check"); |
| 172 | 201 |
} |
| 173 | 202 |
|
| 174 | 203 |
template <typename Digraph> |
| ... | ... |
@@ -191,31 +220,37 @@ |
| 191 | 220 |
g.erase(n1); |
| 192 | 221 |
|
| 193 | 222 |
check(!g.valid(n1), "Wrong validity check"); |
| 194 | 223 |
check(g.valid(n2), "Wrong validity check"); |
| 195 | 224 |
check(g.valid(n3), "Wrong validity check"); |
| 196 | 225 |
check(!g.valid(e1), "Wrong validity check"); |
| 197 | 226 |
check(g.valid(e2), "Wrong validity check"); |
| 198 | 227 |
|
| 199 | 228 |
check(!g.valid(g.nodeFromId(-1)), "Wrong validity check"); |
| 200 | 229 |
check(!g.valid(g.arcFromId(-1)), "Wrong validity check"); |
| 201 | 230 |
} |
| 202 | 231 |
|
| 203 | 232 |
void checkDigraphs() {
|
| 204 | 233 |
{ // Checking ListDigraph
|
| 205 | 234 |
checkDigraph<ListDigraph>(); |
| 206 | 235 |
checkDigraphValidityErase<ListDigraph>(); |
| 207 | 236 |
} |
| 208 | 237 |
{ // Checking SmartDigraph
|
| 209 | 238 |
checkDigraph<SmartDigraph>(); |
| 210 | 239 |
checkDigraphValidity<SmartDigraph>(); |
| 211 | 240 |
} |
| 212 | 241 |
{ // Checking FullDigraph
|
| 213 | 242 |
checkFullDigraph(8); |
| 214 | 243 |
} |
| 244 |
{ // Checking HypercubeDigraph
|
|
| 245 |
checkHypercubeDigraph(1); |
|
| 246 |
checkHypercubeDigraph(2); |
|
| 247 |
checkHypercubeDigraph(3); |
|
| 248 |
checkHypercubeDigraph(4); |
|
| 249 |
} |
|
| 215 | 250 |
} |
| 216 | 251 |
|
| 217 | 252 |
int main() {
|
| 218 | 253 |
checkDigraphs(); |
| 219 | 254 |
checkConcepts(); |
| 220 | 255 |
return 0; |
| 221 | 256 |
} |
0 comments (0 inline)