| [522] | 1 | /* -*- mode: C++; indent-tabs-mode: nil; -*- | 
|---|
|  | 2 | * | 
|---|
|  | 3 | * This file is a part of LEMON, a generic C++ optimization library. | 
|---|
|  | 4 | * | 
|---|
| [1092] | 5 | * Copyright (C) 2003-2013 | 
|---|
| [522] | 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 | #include <lemon/euler.h> | 
|---|
|  | 20 | #include <lemon/list_graph.h> | 
|---|
| [592] | 21 | #include <lemon/adaptors.h> | 
|---|
|  | 22 | #include "test_tools.h" | 
|---|
| [522] | 23 |  | 
|---|
|  | 24 | using namespace lemon; | 
|---|
|  | 25 |  | 
|---|
|  | 26 | template <typename Digraph> | 
|---|
| [592] | 27 | void checkDiEulerIt(const Digraph& g, | 
|---|
|  | 28 | const typename Digraph::Node& start = INVALID) | 
|---|
| [522] | 29 | { | 
|---|
| [531] | 30 | typename Digraph::template ArcMap<int> visitationNumber(g, 0); | 
|---|
| [522] | 31 |  | 
|---|
| [592] | 32 | DiEulerIt<Digraph> e(g, start); | 
|---|
|  | 33 | if (e == INVALID) return; | 
|---|
| [522] | 34 | typename Digraph::Node firstNode = g.source(e); | 
|---|
| [531] | 35 | typename Digraph::Node lastNode = g.target(e); | 
|---|
| [592] | 36 | if (start != INVALID) { | 
|---|
|  | 37 | check(firstNode == start, "checkDiEulerIt: Wrong first node"); | 
|---|
|  | 38 | } | 
|---|
| [522] | 39 |  | 
|---|
| [592] | 40 | for (; e != INVALID; ++e) { | 
|---|
|  | 41 | if (e != INVALID) lastNode = g.target(e); | 
|---|
| [522] | 42 | ++visitationNumber[e]; | 
|---|
|  | 43 | } | 
|---|
|  | 44 |  | 
|---|
|  | 45 | check(firstNode == lastNode, | 
|---|
| [592] | 46 | "checkDiEulerIt: First and last nodes are not the same"); | 
|---|
| [522] | 47 |  | 
|---|
|  | 48 | for (typename Digraph::ArcIt a(g); a != INVALID; ++a) | 
|---|
|  | 49 | { | 
|---|
|  | 50 | check(visitationNumber[a] == 1, | 
|---|
| [592] | 51 | "checkDiEulerIt: Not visited or multiple times visited arc found"); | 
|---|
| [522] | 52 | } | 
|---|
|  | 53 | } | 
|---|
|  | 54 |  | 
|---|
|  | 55 | template <typename Graph> | 
|---|
| [592] | 56 | void checkEulerIt(const Graph& g, | 
|---|
|  | 57 | const typename Graph::Node& start = INVALID) | 
|---|
| [522] | 58 | { | 
|---|
| [531] | 59 | typename Graph::template EdgeMap<int> visitationNumber(g, 0); | 
|---|
| [522] | 60 |  | 
|---|
| [592] | 61 | EulerIt<Graph> e(g, start); | 
|---|
|  | 62 | if (e == INVALID) return; | 
|---|
|  | 63 | typename Graph::Node firstNode = g.source(typename Graph::Arc(e)); | 
|---|
|  | 64 | typename Graph::Node lastNode = g.target(typename Graph::Arc(e)); | 
|---|
|  | 65 | if (start != INVALID) { | 
|---|
|  | 66 | check(firstNode == start, "checkEulerIt: Wrong first node"); | 
|---|
|  | 67 | } | 
|---|
| [522] | 68 |  | 
|---|
| [592] | 69 | for (; e != INVALID; ++e) { | 
|---|
|  | 70 | if (e != INVALID) lastNode = g.target(typename Graph::Arc(e)); | 
|---|
| [522] | 71 | ++visitationNumber[e]; | 
|---|
|  | 72 | } | 
|---|
|  | 73 |  | 
|---|
|  | 74 | check(firstNode == lastNode, | 
|---|
| [592] | 75 | "checkEulerIt: First and last nodes are not the same"); | 
|---|
| [522] | 76 |  | 
|---|
|  | 77 | for (typename Graph::EdgeIt e(g); e != INVALID; ++e) | 
|---|
|  | 78 | { | 
|---|
|  | 79 | check(visitationNumber[e] == 1, | 
|---|
| [592] | 80 | "checkEulerIt: Not visited or multiple times visited edge found"); | 
|---|
| [522] | 81 | } | 
|---|
|  | 82 | } | 
|---|
|  | 83 |  | 
|---|
|  | 84 | int main() | 
|---|
|  | 85 | { | 
|---|
|  | 86 | typedef ListDigraph Digraph; | 
|---|
| [592] | 87 | typedef Undirector<Digraph> Graph; | 
|---|
| [877] | 88 |  | 
|---|
| [592] | 89 | { | 
|---|
|  | 90 | Digraph d; | 
|---|
|  | 91 | Graph g(d); | 
|---|
| [877] | 92 |  | 
|---|
| [592] | 93 | checkDiEulerIt(d); | 
|---|
|  | 94 | checkDiEulerIt(g); | 
|---|
|  | 95 | checkEulerIt(g); | 
|---|
| [522] | 96 |  | 
|---|
| [592] | 97 | check(eulerian(d), "This graph is Eulerian"); | 
|---|
|  | 98 | check(eulerian(g), "This graph is Eulerian"); | 
|---|
|  | 99 | } | 
|---|
| [522] | 100 | { | 
|---|
| [592] | 101 | Digraph d; | 
|---|
|  | 102 | Graph g(d); | 
|---|
|  | 103 | Digraph::Node n = d.addNode(); | 
|---|
| [1083] | 104 | ::lemon::ignore_unused_variable_warning(n); | 
|---|
| [1092] | 105 |  | 
|---|
| [592] | 106 | checkDiEulerIt(d); | 
|---|
|  | 107 | checkDiEulerIt(g); | 
|---|
|  | 108 | checkEulerIt(g); | 
|---|
| [522] | 109 |  | 
|---|
| [592] | 110 | check(eulerian(d), "This graph is Eulerian"); | 
|---|
|  | 111 | check(eulerian(g), "This graph is Eulerian"); | 
|---|
| [522] | 112 | } | 
|---|
| [592] | 113 | { | 
|---|
|  | 114 | Digraph d; | 
|---|
|  | 115 | Graph g(d); | 
|---|
|  | 116 | Digraph::Node n = d.addNode(); | 
|---|
|  | 117 | d.addArc(n, n); | 
|---|
| [522] | 118 |  | 
|---|
| [592] | 119 | checkDiEulerIt(d); | 
|---|
|  | 120 | checkDiEulerIt(g); | 
|---|
|  | 121 | checkEulerIt(g); | 
|---|
|  | 122 |  | 
|---|
|  | 123 | check(eulerian(d), "This graph is Eulerian"); | 
|---|
|  | 124 | check(eulerian(g), "This graph is Eulerian"); | 
|---|
|  | 125 | } | 
|---|
| [522] | 126 | { | 
|---|
| [592] | 127 | Digraph d; | 
|---|
|  | 128 | Graph g(d); | 
|---|
|  | 129 | Digraph::Node n1 = d.addNode(); | 
|---|
|  | 130 | Digraph::Node n2 = d.addNode(); | 
|---|
|  | 131 | Digraph::Node n3 = d.addNode(); | 
|---|
| [877] | 132 |  | 
|---|
| [592] | 133 | d.addArc(n1, n2); | 
|---|
|  | 134 | d.addArc(n2, n1); | 
|---|
|  | 135 | d.addArc(n2, n3); | 
|---|
|  | 136 | d.addArc(n3, n2); | 
|---|
| [522] | 137 |  | 
|---|
| [592] | 138 | checkDiEulerIt(d); | 
|---|
|  | 139 | checkDiEulerIt(d, n2); | 
|---|
|  | 140 | checkDiEulerIt(g); | 
|---|
|  | 141 | checkDiEulerIt(g, n2); | 
|---|
|  | 142 | checkEulerIt(g); | 
|---|
|  | 143 | checkEulerIt(g, n2); | 
|---|
| [522] | 144 |  | 
|---|
| [592] | 145 | check(eulerian(d), "This graph is Eulerian"); | 
|---|
|  | 146 | check(eulerian(g), "This graph is Eulerian"); | 
|---|
| [522] | 147 | } | 
|---|
| [592] | 148 | { | 
|---|
|  | 149 | Digraph d; | 
|---|
|  | 150 | Graph g(d); | 
|---|
|  | 151 | Digraph::Node n1 = d.addNode(); | 
|---|
|  | 152 | Digraph::Node n2 = d.addNode(); | 
|---|
|  | 153 | Digraph::Node n3 = d.addNode(); | 
|---|
|  | 154 | Digraph::Node n4 = d.addNode(); | 
|---|
|  | 155 | Digraph::Node n5 = d.addNode(); | 
|---|
|  | 156 | Digraph::Node n6 = d.addNode(); | 
|---|
| [877] | 157 |  | 
|---|
| [592] | 158 | d.addArc(n1, n2); | 
|---|
|  | 159 | d.addArc(n2, n4); | 
|---|
|  | 160 | d.addArc(n1, n3); | 
|---|
|  | 161 | d.addArc(n3, n4); | 
|---|
|  | 162 | d.addArc(n4, n1); | 
|---|
|  | 163 | d.addArc(n3, n5); | 
|---|
|  | 164 | d.addArc(n5, n2); | 
|---|
|  | 165 | d.addArc(n4, n6); | 
|---|
|  | 166 | d.addArc(n2, n6); | 
|---|
|  | 167 | d.addArc(n6, n1); | 
|---|
|  | 168 | d.addArc(n6, n3); | 
|---|
| [522] | 169 |  | 
|---|
| [592] | 170 | checkDiEulerIt(d); | 
|---|
|  | 171 | checkDiEulerIt(d, n1); | 
|---|
|  | 172 | checkDiEulerIt(d, n5); | 
|---|
|  | 173 |  | 
|---|
|  | 174 | checkDiEulerIt(g); | 
|---|
|  | 175 | checkDiEulerIt(g, n1); | 
|---|
|  | 176 | checkDiEulerIt(g, n5); | 
|---|
|  | 177 | checkEulerIt(g); | 
|---|
|  | 178 | checkEulerIt(g, n1); | 
|---|
|  | 179 | checkEulerIt(g, n5); | 
|---|
|  | 180 |  | 
|---|
|  | 181 | check(eulerian(d), "This graph is Eulerian"); | 
|---|
|  | 182 | check(eulerian(g), "This graph is Eulerian"); | 
|---|
|  | 183 | } | 
|---|
| [522] | 184 | { | 
|---|
| [592] | 185 | Digraph d; | 
|---|
|  | 186 | Graph g(d); | 
|---|
|  | 187 | Digraph::Node n0 = d.addNode(); | 
|---|
|  | 188 | Digraph::Node n1 = d.addNode(); | 
|---|
|  | 189 | Digraph::Node n2 = d.addNode(); | 
|---|
|  | 190 | Digraph::Node n3 = d.addNode(); | 
|---|
|  | 191 | Digraph::Node n4 = d.addNode(); | 
|---|
|  | 192 | Digraph::Node n5 = d.addNode(); | 
|---|
| [1083] | 193 | ::lemon::ignore_unused_variable_warning(n0,n4,n5); | 
|---|
| [997] | 194 |  | 
|---|
| [592] | 195 | d.addArc(n1, n2); | 
|---|
|  | 196 | d.addArc(n2, n3); | 
|---|
|  | 197 | d.addArc(n3, n1); | 
|---|
| [522] | 198 |  | 
|---|
| [592] | 199 | checkDiEulerIt(d); | 
|---|
|  | 200 | checkDiEulerIt(d, n2); | 
|---|
| [522] | 201 |  | 
|---|
| [592] | 202 | checkDiEulerIt(g); | 
|---|
|  | 203 | checkDiEulerIt(g, n2); | 
|---|
|  | 204 | checkEulerIt(g); | 
|---|
|  | 205 | checkEulerIt(g, n2); | 
|---|
|  | 206 |  | 
|---|
|  | 207 | check(!eulerian(d), "This graph is not Eulerian"); | 
|---|
|  | 208 | check(!eulerian(g), "This graph is not Eulerian"); | 
|---|
| [522] | 209 | } | 
|---|
| [592] | 210 | { | 
|---|
|  | 211 | Digraph d; | 
|---|
|  | 212 | Graph g(d); | 
|---|
|  | 213 | Digraph::Node n1 = d.addNode(); | 
|---|
|  | 214 | Digraph::Node n2 = d.addNode(); | 
|---|
|  | 215 | Digraph::Node n3 = d.addNode(); | 
|---|
| [877] | 216 |  | 
|---|
| [592] | 217 | d.addArc(n1, n2); | 
|---|
|  | 218 | d.addArc(n2, n3); | 
|---|
| [522] | 219 |  | 
|---|
| [592] | 220 | check(!eulerian(d), "This graph is not Eulerian"); | 
|---|
|  | 221 | check(!eulerian(g), "This graph is not Eulerian"); | 
|---|
| [522] | 222 | } | 
|---|
|  | 223 |  | 
|---|
|  | 224 | return 0; | 
|---|
|  | 225 | } | 
|---|