1 /* -*- mode: C++; indent-tabs-mode: nil; -*-
3 * This file is a part of LEMON, a generic C++ optimization library.
5 * Copyright (C) 2003-2013
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
21 #include <lemon/full_graph.h>
22 #include <lemon/math.h>
23 #include <lemon/maps.h>
24 #include <lemon/random.h>
25 #include <lemon/dim2.h>
27 #include <lemon/nearest_neighbor_tsp.h>
28 #include <lemon/greedy_tsp.h>
29 #include <lemon/insertion_tsp.h>
30 #include <lemon/christofides_tsp.h>
31 #include <lemon/opt2_tsp.h>
33 #include "test_tools.h"
35 using namespace lemon;
37 // // Tests checkMetricCost() function
38 // void metricCostTest() {
39 // GRAPH_TYPEDEFS(FullGraph);
41 // check(checkMetricCost(g, constMap<Edge>(0)), "Wrong checkMetricCost()");
42 // check(checkMetricCost(g, constMap<Edge>(1)), "Wrong checkMetricCost()");
43 // check(!checkMetricCost(g, constMap<Edge>(-1)), "Wrong checkMetricCost()");
45 // FullGraph::EdgeMap<float> cost(g);
46 // for (NodeIt u(g); u != INVALID; ++u) {
47 // for (NodeIt v(g); v != INVALID; ++v) {
48 // if (u == v) continue;
49 // float x1 = g.id(u), x2 = g.id(v);
50 // float y1 = x1 * x1, y2 = x2 * x2;
51 // cost[g.edge(u, v)] = std::sqrt((x2-x1)*(x2-x1) + (y2-y1)*(y2-y1));
54 // check(checkMetricCost(g, cost), "Wrong checkMetricCost()");
55 // float eps = Tolerance<float>::defaultEpsilon();
56 // cost[g.edge(g(0), g(9))] =
57 // cost[g.edge(g(0), g(8))] + cost[g.edge(g(8), g(9))] + eps * 2;
58 // check(!checkMetricCost(g, cost), "Wrong checkMetricCost()");
59 // check(checkMetricCost(g, cost, Tolerance<float>(eps * 4)),
60 // "Wrong checkMetricCost()");
63 // Checks tour validity
64 template <typename Container>
65 bool checkTour(const FullGraph &gr, const Container &p) {
66 FullGraph::NodeMap<bool> used(gr, false);
69 for (typename Container::const_iterator it = p.begin(); it != p.end(); ++it)
71 FullGraph::Node node = *it;
72 if (used[node]) return false;
77 return (node_cnt == gr.nodeNum());
80 // Checks tour validity
81 bool checkTourPath(const FullGraph &gr, const Path<FullGraph> &p) {
82 FullGraph::NodeMap<bool> used(gr, false);
84 if (!checkPath(gr, p)) return false;
85 if (gr.nodeNum() <= 1 && p.length() != 0) return false;
86 if (gr.nodeNum() > 1 && p.length() != gr.nodeNum()) return false;
88 for (int i = 0; i < p.length(); ++i) {
89 if (used[gr.target(p.nth(i))]) return false;
90 used[gr.target(p.nth(i))] = true;
96 template <typename CostMap>
97 bool checkCost(const FullGraph &gr, const std::vector<FullGraph::Node> &p,
98 const CostMap &cost, typename CostMap::Value total)
100 typedef typename CostMap::Value Cost;
103 for (int i = 0; i < int(p.size()) - 1; ++i)
104 s += cost[gr.edge(p[i], p[i+1])];
105 if (int(p.size()) >= 2)
106 s += cost[gr.edge(p.back(), p.front())];
108 return !Tolerance<Cost>().different(s, total);
112 template <typename CostMap>
113 bool checkCost(const FullGraph &, const Path<FullGraph> &p,
114 const CostMap &cost, typename CostMap::Value total)
116 typedef typename CostMap::Value Cost;
119 for (int i = 0; i < p.length(); ++i)
122 return !Tolerance<Cost>().different(s, total);
125 // Tests a TSP algorithm on small graphs
126 template <typename TSP>
127 void tspTestSmall(const std::string &alg_name) {
128 GRAPH_TYPEDEFS(FullGraph);
130 for (int n = 0; n <= 5; ++n) {
133 int esize = n <= 1 ? 0 : n;
135 ConstMap<Edge, int> cost_map(1);
136 TSP alg(g, cost_map);
138 check(alg.run() == esize, alg_name + ": Wrong total cost");
139 check(alg.tourCost() == esize, alg_name + ": Wrong total cost");
141 std::list<Node> list1(nsize), list2;
142 std::vector<Node> vec1(nsize), vec2;
143 alg.tourNodes(list1.begin());
144 alg.tourNodes(vec1.begin());
145 alg.tourNodes(std::front_inserter(list2));
146 alg.tourNodes(std::back_inserter(vec2));
147 check(checkTour(g, alg.tourNodes()), alg_name + ": Wrong node sequence");
148 check(checkTour(g, list1), alg_name + ": Wrong node sequence");
149 check(checkTour(g, vec1), alg_name + ": Wrong node sequence");
150 check(checkTour(g, list2), alg_name + ": Wrong node sequence");
151 check(checkTour(g, vec2), alg_name + ": Wrong node sequence");
152 check(checkCost(g, vec1, constMap<Edge, int>(1), esize),
153 alg_name + ": Wrong tour cost");
155 SimplePath<FullGraph> path;
157 check(path.length() == esize, alg_name + ": Wrong tour");
158 check(checkTourPath(g, path), alg_name + ": Wrong tour");
159 check(checkCost(g, path, constMap<Edge, int>(1), esize),
160 alg_name + ": Wrong tour cost");
164 // Tests a TSP algorithm on random graphs
165 template <typename TSP>
166 void tspTestRandom(const std::string &alg_name) {
167 GRAPH_TYPEDEFS(FullGraph);
170 FullGraph::NodeMap<dim2::Point<double> > pos(g);
171 DoubleEdgeMap cost(g);
174 Opt2Tsp<DoubleEdgeMap > opt2(g, cost);
176 for (int i = 1; i <= 3; i++) {
177 for (NodeIt u(g); u != INVALID; ++u) {
178 pos[u] = dim2::Point<double>(rnd(), rnd());
180 for (NodeIt u(g); u != INVALID; ++u) {
181 for (NodeIt v(g); v != INVALID; ++v) {
182 if (u == v) continue;
183 cost[g.edge(u, v)] = (pos[u] - pos[v]).normSquare();
187 check(alg.run() > 0, alg_name + ": Wrong total cost");
189 std::vector<Node> vec;
190 alg.tourNodes(std::back_inserter(vec));
191 check(checkTour(g, vec), alg_name + ": Wrong node sequence");
192 check(checkCost(g, vec, cost, alg.tourCost()),
193 alg_name + ": Wrong tour cost");
195 SimplePath<FullGraph> path;
197 check(checkTourPath(g, path), alg_name + ": Wrong tour");
198 check(checkCost(g, path, cost, alg.tourCost()),
199 alg_name + ": Wrong tour cost");
201 check(!Tolerance<double>().less(alg.tourCost(), opt2.run(alg.tourNodes())),
202 "2-opt improvement: Wrong total cost");
203 check(checkTour(g, opt2.tourNodes()),
204 "2-opt improvement: Wrong node sequence");
205 check(checkCost(g, opt2.tourNodes(), cost, opt2.tourCost()),
206 "2-opt improvement: Wrong tour cost");
208 check(!Tolerance<double>().less(alg.tourCost(), opt2.run(path)),
209 "2-opt improvement: Wrong total cost");
210 check(checkTour(g, opt2.tourNodes()),
211 "2-opt improvement: Wrong node sequence");
212 check(checkCost(g, opt2.tourNodes(), cost, opt2.tourCost()),
213 "2-opt improvement: Wrong tour cost");
217 // Algorithm class for Nearest Insertion
218 template <typename CM>
219 class NearestInsertionTsp : public InsertionTsp<CM> {
221 NearestInsertionTsp(const FullGraph &gr, const CM &cost)
222 : InsertionTsp<CM>(gr, cost) {}
223 typename CM::Value run() {
224 return InsertionTsp<CM>::run(InsertionTsp<CM>::NEAREST);
228 // Algorithm class for Farthest Insertion
229 template <typename CM>
230 class FarthestInsertionTsp : public InsertionTsp<CM> {
232 FarthestInsertionTsp(const FullGraph &gr, const CM &cost)
233 : InsertionTsp<CM>(gr, cost) {}
234 typename CM::Value run() {
235 return InsertionTsp<CM>::run(InsertionTsp<CM>::FARTHEST);
239 // Algorithm class for Cheapest Insertion
240 template <typename CM>
241 class CheapestInsertionTsp : public InsertionTsp<CM> {
243 CheapestInsertionTsp(const FullGraph &gr, const CM &cost)
244 : InsertionTsp<CM>(gr, cost) {}
245 typename CM::Value run() {
246 return InsertionTsp<CM>::run(InsertionTsp<CM>::CHEAPEST);
250 // Algorithm class for Random Insertion
251 template <typename CM>
252 class RandomInsertionTsp : public InsertionTsp<CM> {
254 RandomInsertionTsp(const FullGraph &gr, const CM &cost)
255 : InsertionTsp<CM>(gr, cost) {}
256 typename CM::Value run() {
257 return InsertionTsp<CM>::run(InsertionTsp<CM>::RANDOM);
262 GRAPH_TYPEDEFS(FullGraph);
266 tspTestSmall<NearestNeighborTsp<ConstMap<Edge, int> > >("Nearest Neighbor");
267 tspTestSmall<GreedyTsp<ConstMap<Edge, int> > >("Greedy");
268 tspTestSmall<NearestInsertionTsp<ConstMap<Edge, int> > >("Nearest Insertion");
269 tspTestSmall<FarthestInsertionTsp<ConstMap<Edge, int> > >
270 ("Farthest Insertion");
271 tspTestSmall<CheapestInsertionTsp<ConstMap<Edge, int> > >
272 ("Cheapest Insertion");
273 tspTestSmall<RandomInsertionTsp<ConstMap<Edge, int> > >("Random Insertion");
274 tspTestSmall<ChristofidesTsp<ConstMap<Edge, int> > >("Christofides");
275 tspTestSmall<Opt2Tsp<ConstMap<Edge, int> > >("2-opt");
277 tspTestRandom<NearestNeighborTsp<DoubleEdgeMap > >("Nearest Neighbor");
278 tspTestRandom<GreedyTsp<DoubleEdgeMap > >("Greedy");
279 tspTestRandom<NearestInsertionTsp<DoubleEdgeMap > >("Nearest Insertion");
280 tspTestRandom<FarthestInsertionTsp<DoubleEdgeMap > >("Farthest Insertion");
281 tspTestRandom<CheapestInsertionTsp<DoubleEdgeMap > >("Cheapest Insertion");
282 tspTestRandom<RandomInsertionTsp<DoubleEdgeMap > >("Random Insertion");
283 tspTestRandom<ChristofidesTsp<DoubleEdgeMap > >("Christofides");
284 tspTestRandom<Opt2Tsp<DoubleEdgeMap > >("2-opt");