3 * This file is a part of LEMON, a generic C++ optimization library
5 * Copyright (C) 2003-2008
6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
7 * (Egervary Research Group on Combinatorial Optimization, EGRES).
9 * Permission to use, modify and distribute this software is granted
10 * provided that this copyright notice appears in all copies. For
11 * precise terms see the accompanying LICENSE file.
13 * This software is provided "AS IS" with no warranty of any kind,
14 * express or implied, and with no claim as to its suitability for any
19 #include <lemon/smart_graph.h>
20 #include <lemon/list_graph.h>
21 #include <lemon/lgf_reader.h>
22 #include <lemon/graph_utils.h>
23 #include <lemon/error.h>
25 #include "test_tools.h"
28 using namespace lemon;
30 void digraph_copy_test() {
34 SmartDigraph::NodeMap<int> fnm(from);
35 SmartDigraph::ArcMap<int> fam(from);
36 SmartDigraph::Node fn = INVALID;
37 SmartDigraph::Arc fa = INVALID;
39 std::vector<SmartDigraph::Node> fnv;
40 for (int i = 0; i < nn; ++i) {
41 SmartDigraph::Node node = from.addNode();
44 if (i == 0) fn = node;
47 for (int i = 0; i < nn; ++i) {
48 for (int j = 0; j < nn; ++j) {
49 SmartDigraph::Arc arc = from.addArc(fnv[i], fnv[j]);
51 if (i == 0 && j == 0) fa = arc;
56 ListDigraph::NodeMap<int> tnm(to);
57 ListDigraph::ArcMap<int> tam(to);
61 SmartDigraph::NodeMap<ListDigraph::Node> nr(from);
62 SmartDigraph::ArcMap<ListDigraph::Arc> er(from);
64 ListDigraph::NodeMap<SmartDigraph::Node> ncr(to);
65 ListDigraph::ArcMap<SmartDigraph::Arc> ecr(to);
67 DigraphCopy<ListDigraph, SmartDigraph>(to, from).
68 nodeMap(tnm, fnm).arcMap(tam, fam).
69 nodeRef(nr).arcRef(er).
70 nodeCrossRef(ncr).arcCrossRef(ecr).
71 node(tn, fn).arc(ta, fa).run();
73 for (SmartDigraph::NodeIt it(from); it != INVALID; ++it) {
74 check(ncr[nr[it]] == it, "Wrong copy.");
75 check(fnm[it] == tnm[nr[it]], "Wrong copy.");
78 for (SmartDigraph::ArcIt it(from); it != INVALID; ++it) {
79 check(ecr[er[it]] == it, "Wrong copy.");
80 check(fam[it] == tam[er[it]], "Wrong copy.");
81 check(nr[from.source(it)] == to.source(er[it]), "Wrong copy.");
82 check(nr[from.target(it)] == to.target(er[it]), "Wrong copy.");
85 for (ListDigraph::NodeIt it(to); it != INVALID; ++it) {
86 check(nr[ncr[it]] == it, "Wrong copy.");
89 for (ListDigraph::ArcIt it(to); it != INVALID; ++it) {
90 check(er[ecr[it]] == it, "Wrong copy.");
92 check(tn == nr[fn], "Wrong copy.");
93 check(ta == er[fa], "Wrong copy.");
96 void graph_copy_test() {
100 SmartGraph::NodeMap<int> fnm(from);
101 SmartGraph::ArcMap<int> fam(from);
102 SmartGraph::EdgeMap<int> fem(from);
103 SmartGraph::Node fn = INVALID;
104 SmartGraph::Arc fa = INVALID;
105 SmartGraph::Edge fe = INVALID;
107 std::vector<SmartGraph::Node> fnv;
108 for (int i = 0; i < nn; ++i) {
109 SmartGraph::Node node = from.addNode();
112 if (i == 0) fn = node;
115 for (int i = 0; i < nn; ++i) {
116 for (int j = 0; j < nn; ++j) {
117 SmartGraph::Edge edge = from.addEdge(fnv[i], fnv[j]);
118 fem[edge] = i * i + j * j;
119 fam[from.direct(edge, true)] = i + j * j;
120 fam[from.direct(edge, false)] = i * i + j;
121 if (i == 0 && j == 0) fa = from.direct(edge, true);
122 if (i == 0 && j == 0) fe = edge;
127 ListGraph::NodeMap<int> tnm(to);
128 ListGraph::ArcMap<int> tam(to);
129 ListGraph::EdgeMap<int> tem(to);
134 SmartGraph::NodeMap<ListGraph::Node> nr(from);
135 SmartGraph::ArcMap<ListGraph::Arc> ar(from);
136 SmartGraph::EdgeMap<ListGraph::Edge> er(from);
138 ListGraph::NodeMap<SmartGraph::Node> ncr(to);
139 ListGraph::ArcMap<SmartGraph::Arc> acr(to);
140 ListGraph::EdgeMap<SmartGraph::Edge> ecr(to);
142 GraphCopy<ListGraph, SmartGraph>(to, from).
143 nodeMap(tnm, fnm).arcMap(tam, fam).edgeMap(tem, fem).
144 nodeRef(nr).arcRef(ar).edgeRef(er).
145 nodeCrossRef(ncr).arcCrossRef(acr).edgeCrossRef(ecr).
146 node(tn, fn).arc(ta, fa).edge(te, fe).run();
148 for (SmartGraph::NodeIt it(from); it != INVALID; ++it) {
149 check(ncr[nr[it]] == it, "Wrong copy.");
150 check(fnm[it] == tnm[nr[it]], "Wrong copy.");
153 for (SmartGraph::ArcIt it(from); it != INVALID; ++it) {
154 check(acr[ar[it]] == it, "Wrong copy.");
155 check(fam[it] == tam[ar[it]], "Wrong copy.");
156 check(nr[from.source(it)] == to.source(ar[it]), "Wrong copy.");
157 check(nr[from.target(it)] == to.target(ar[it]), "Wrong copy.");
160 for (SmartGraph::EdgeIt it(from); it != INVALID; ++it) {
161 check(ecr[er[it]] == it, "Wrong copy.");
162 check(fem[it] == tem[er[it]], "Wrong copy.");
163 check(nr[from.u(it)] == to.u(er[it]) || nr[from.u(it)] == to.v(er[it]),
165 check(nr[from.v(it)] == to.u(er[it]) || nr[from.v(it)] == to.v(er[it]),
167 check((from.u(it) != from.v(it)) == (to.u(er[it]) != to.v(er[it])),
171 for (ListGraph::NodeIt it(to); it != INVALID; ++it) {
172 check(nr[ncr[it]] == it, "Wrong copy.");
175 for (ListGraph::ArcIt it(to); it != INVALID; ++it) {
176 check(ar[acr[it]] == it, "Wrong copy.");
178 for (ListGraph::EdgeIt it(to); it != INVALID; ++it) {
179 check(er[ecr[it]] == it, "Wrong copy.");
181 check(tn == nr[fn], "Wrong copy.");
182 check(ta == ar[fa], "Wrong copy.");
183 check(te == er[fe], "Wrong copy.");