1 /* -*- mode: C++; indent-tabs-mode: nil; -*-
3 * This file is a part of LEMON, a generic C++ optimization library.
5 * Copyright (C) 2003-2009
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/list_graph.h>
22 #include <lemon/lgf_reader.h>
23 #include <lemon/path.h>
24 #include <lemon/suurballe.h>
26 #include "test_tools.h"
28 using namespace lemon;
32 "label supply1 supply2 supply3\n"
46 " cost capacity lower1 lower2\n"
73 // Check the feasibility of the flow
74 template <typename Digraph, typename FlowMap>
75 bool checkFlow( const Digraph& gr, const FlowMap& flow,
76 typename Digraph::Node s, typename Digraph::Node t,
79 TEMPLATE_DIGRAPH_TYPEDEFS(Digraph);
80 for (ArcIt e(gr); e != INVALID; ++e)
81 if (!(flow[e] == 0 || flow[e] == 1)) return false;
83 for (NodeIt n(gr); n != INVALID; ++n) {
85 for (OutArcIt e(gr, n); e != INVALID; ++e)
87 for (InArcIt e(gr, n); e != INVALID; ++e)
89 if (n == s && sum != value) return false;
90 if (n == t && sum != -value) return false;
91 if (n != s && n != t && sum != 0) return false;
97 // Check the optimalitiy of the flow
98 template < typename Digraph, typename CostMap,
99 typename FlowMap, typename PotentialMap >
100 bool checkOptimality( const Digraph& gr, const CostMap& cost,
101 const FlowMap& flow, const PotentialMap& pi )
103 // Check the "Complementary Slackness" optimality condition
104 TEMPLATE_DIGRAPH_TYPEDEFS(Digraph);
106 for (ArcIt e(gr); e != INVALID; ++e) {
107 typename CostMap::Value red_cost =
108 cost[e] + pi[gr.source(e)] - pi[gr.target(e)];
109 opt = (flow[e] == 0 && red_cost >= 0) ||
110 (flow[e] == 1 && red_cost <= 0);
117 template <typename Digraph, typename Path>
118 bool checkPath( const Digraph& gr, const Path& path,
119 typename Digraph::Node s, typename Digraph::Node t)
121 // Check the "Complementary Slackness" optimality condition
122 TEMPLATE_DIGRAPH_TYPEDEFS(Digraph);
124 for (int i = 0; i < path.length(); ++i) {
125 if (gr.source(path.nth(i)) != n) return false;
126 n = gr.target(path.nth(i));
134 DIGRAPH_TYPEDEFS(ListDigraph);
136 // Read the test digraph
138 ListDigraph::ArcMap<int> length(digraph);
141 std::istringstream input(test_lgf);
142 DigraphReader<ListDigraph>(digraph, input).
143 arcMap("cost", length).
144 node("source", source).
145 node("target", target).
150 Suurballe<ListDigraph> suurballe(digraph, length, source, target);
151 check(suurballe.run(2) == 2, "Wrong number of paths");
152 check(checkFlow(digraph, suurballe.flowMap(), source, target, 2),
153 "The flow is not feasible");
154 check(suurballe.totalLength() == 510, "The flow is not optimal");
155 check(checkOptimality(digraph, length, suurballe.flowMap(),
156 suurballe.potentialMap()),
158 for (int i = 0; i < suurballe.pathNum(); ++i)
159 check(checkPath(digraph, suurballe.path(i), source, target),
165 Suurballe<ListDigraph> suurballe(digraph, length, source, target);
166 check(suurballe.run(3) == 3, "Wrong number of paths");
167 check(checkFlow(digraph, suurballe.flowMap(), source, target, 3),
168 "The flow is not feasible");
169 check(suurballe.totalLength() == 1040, "The flow is not optimal");
170 check(checkOptimality(digraph, length, suurballe.flowMap(),
171 suurballe.potentialMap()),
173 for (int i = 0; i < suurballe.pathNum(); ++i)
174 check(checkPath(digraph, suurballe.path(i), source, target),
178 // Find 5 paths (only 3 can be found)
180 Suurballe<ListDigraph> suurballe(digraph, length, source, target);
181 check(suurballe.run(5) == 3, "Wrong number of paths");
182 check(checkFlow(digraph, suurballe.flowMap(), source, target, 3),
183 "The flow is not feasible");
184 check(suurballe.totalLength() == 1040, "The flow is not optimal");
185 check(checkOptimality(digraph, length, suurballe.flowMap(),
186 suurballe.potentialMap()),
188 for (int i = 0; i < suurballe.pathNum(); ++i)
189 check(checkPath(digraph, suurballe.path(i), source, target),