File: cycle_ratio_tests.cpp

package info (click to toggle)
boost1.83 1.83.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 545,632 kB
  • sloc: cpp: 3,857,086; xml: 125,552; ansic: 34,414; python: 25,887; asm: 5,276; sh: 4,799; ada: 1,681; makefile: 1,629; perl: 1,212; pascal: 1,139; sql: 810; yacc: 478; ruby: 102; lisp: 24; csh: 6
file content (346 lines) | stat: -rw-r--r-- 10,847 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
// Copyright (C) 2006-2009 Dmitry Bufistov and Andrey Parfenov

// Use, modification and distribution is subject to the Boost Software
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)

#include <sstream>

#include <boost/graph/adjacency_list.hpp>
#include <boost/graph/adjacency_matrix.hpp>
#include <boost/graph/graphviz.hpp>
#include <boost/graph/iteration_macros.hpp>
#include <boost/graph/graph_utility.hpp>
#include <boost/graph/property_iter_range.hpp>
#include <boost/graph/howard_cycle_ratio.hpp>

#include <boost/core/lightweight_test.hpp>

/**
 * @author Dmitry Bufistov
 * @author Andrey Parfenov
 */

/*!
 * The graph has two equal cycles with ratio 2/3
 */
static const char test_graph1[] = "digraph G {\
  edge [w1=1, w2=1];\
  1->2\
  2->3 [w1=0]\
  3->4\
  4->2\
  1->5\
  5->6\
  6->7 [w1=0]\
  7->5 \
}";

/*!
 * The graph has no cycles
 */
static const std::string test_graph2
    = "digraph G {edge [w1=1]; 1->3 [w2=1]; 1->2 [w2=2]; 1->4 [w2=7]; }";

/*!
 * Example from the paper "Nunerical computation of spectral elements"
 * Maximum cycle ratio is 5.5
 */
static const char test_graph3[] = "\
digraph article {\
  edge [w2 =2];\
  1->1 [w1 = 1];\
  1->2 [w1 = 2];\
  1->4 [w1 = 7];\
  2->2 [w1 = 3];\
  2->3 [w1 = 5];\
  3->2 [w1 = 4];\
  3->4 [w1 = 3];\
  4->2 [w1 = 2];\
  4->3 [w1 = 8];\
}";

/*!
 * Simple multigraph.
 * Maximum cycle ratio is 2.5, minimum  0.5
 */
static const char test_graph4[] = "digraph G {\
edge [w2=1];\
a->b  [w1=1];\
b->a  [w1=0];\
a->b [w1=2];\
b->a [w1=3];\
}";

/*!
 * The big graph with two equal cycles
 */
static const char test_graph5[]
    = "digraph G { edge [w2=1, w1=1]; n94->n8; n95->n8; n93->n8; n93->n9; n42->n9; n23->n13;\
n29->n13; n95->n14; n37->n14; n95->n19; n37->n19; n94->n23; n60->n26; n76->n26; n94->n29; n9->n33 [w1=0]; n80->n33;\
n14->n34 [w1=0];n19->n34; n94->n37; n94->n42; n95->n42; n8->n60; n26->n60; n26->n76; n106->n76; n93->n80; n42->n80;\
n33->n93; n60->n93; n13->n94; n60->n94; n34->n95; n60->n95; n94->n106; n95->n106; n93->n106;\
}";

/*!
 * Random graph generated by hands.
 * Maximum cycle ratio is 3.58, minimum is 0.294118
 */
static const char test_graph6[] = "digraph test_graph6 {\
  16;\
  17;\
\
  1->2 [w1=1, w2=0.1];\
  2->3 [w1 = 2, w2=3.6];\
  3->4 [w1=7, w2=8];\
  4->5 [w1=3.1,w2=0.8];\
  4->5 [w1 = 4.2, w2=0.6];\
  4->5 [w1 = 5.3, w2=0.4];\
  5->6 [w1=-10, w2 = 34.75]\
  6->1 [w1=100, w2 = 20]\
\
  1->7 [w1=10, w2 = 20];\
  7->8 [w1=3.75, w2 = 1.25];\
  7->8 [w1=30, w2 = 22.2];\
  8->9 [w1=10, w2 = 20];\
  9->10 [w1=-2.1, w2 = 30]\
  10->6 [w1=10, w2 = 20]\
\
  11->12 [w1 = 5, w2=0.45];\
  12->13 [w1 = 4, w2=0.2];\
  13->14 [w1 = 3, w2=15.75];\
  14->11 [w1 = -2.5, w2=0.6];\
  11->10 [w1 = -8, w2=0.9];\
  11->10 [w1 = -15, w2=2.9];\
\
  18 -> 19 [w1=18, w2=6];\
  18 -> 20 [w1=16.3, w2=8.2];\
  18 -> 21 [w1=-3, w2=15];\
  18 -> 18 [w1=2, w2=1];\
  19 -> 18 [w1=0.06, w2=0.01];\
  19 -> 19 [w1=1, w2=1.2];\
  19 -> 20 [w1=5, w2=2];\
  19 -> 21 [w1=3, w2=0.1];\
  20 -> 18 [w1=4, w2=0.2];\
  20 -> 19 [w1=11, w2=21];\
  20 -> 20 [w1=6, w2=5];\
  20 -> 21 [w1=7, w2=1];\
  21 -> 18 [w1=8, w2=2];\
  21 -> 19 [w1=12, w2=6];\
  21 -> 20 [w1=7.5, w2=4.3];\
  21 -> 21 [w1=1.25, w2=2.15];\
}";

using namespace boost;
typedef property< vertex_index_t, int,
    property< boost::vertex_name_t, std::string > >
    vertex_props_t;
template < typename TW1, typename TW2 > struct Graph
{
    typedef typename boost::property< boost::edge_weight_t, TW1,
        typename boost::property< boost::edge_weight2_t, TW2,
            property< boost::edge_index_t, int > > >
        edge_props_t;
    typedef typename boost::adjacency_list< boost::listS, boost::listS,
        boost::directedS, vertex_props_t, edge_props_t >
        type;
};
typedef Graph< int, int >::type diGraphInt;
typedef Graph< double, double >::type diGraphReal;

template < typename TW1, typename TW2 > struct CEdgeProps
{
    CEdgeProps(TW1 w1 = 1, TW2 w2 = 2)
    : m_w1(w1), m_w2(w2), m_edge_index((std::numeric_limits< int >::max)())
    {
    }
    TW1 m_w1;
    TW2 m_w2;
    int m_edge_index;
};
typedef adjacency_matrix< directedS, no_property, CEdgeProps< int, int > >
    GraphMInt;

/// Create "tokens_map" for reading graph properties from .dot file
template < typename TG >
void make_dynamic_properties(TG& g, dynamic_properties& p)
{
    p.property("node_id", get(vertex_name, g));
    p.property("label", get(edge_weight, g));
    p.property("w1", get(edge_weight, g));
    p.property("w2", get(edge_weight2, g));
}

template < typename TG > void read_data1(std::istream& is, TG& g)
{
    dynamic_properties p;
    make_dynamic_properties(g, p);
    read_graphviz(is, g, p);
    std::cout << "Number of vertices: " << num_vertices(g) << std::endl;
    std::cout << "Number of edges: " << num_edges(g) << std::endl;
    int i = 0;
    BGL_FORALL_VERTICES_T(vd, g, TG) { put(vertex_index, g, vd, i++); }
    i = 0;
    BGL_FORALL_EDGES_T(ed, g, TG) { put(edge_index, g, ed, i++); }
}

template < typename TG > void read_data(const char* file, TG& g)
{
    std::cout << "Reading data from file: " << file << std::endl;
    std::ifstream ifs(file);
    BOOST_TEST(ifs.good());
    read_data1(ifs, g);
}

struct my_float : boost::mcr_float<>
{
    static double infinity() { return 1000; }
};

struct my_float2 : boost::mcr_float<>
{
    static double infinity() { return 2; }
};

int main(int argc, char* argv[])
{
    assert(argc >= 2);
    using std::cout;
    using std::endl;
    const double epsilon = 0.005;
    double min_cr, max_cr; /// Minimum and maximum cycle ratio
    typedef std::vector< graph_traits< diGraphInt >::edge_descriptor > ccInt_t;
    typedef std::vector< graph_traits< diGraphReal >::edge_descriptor >
        ccReal_t;
    ccInt_t cc; /// critical cycle

    diGraphInt tg;
    property_map< diGraphInt, vertex_index_t >::type vim
        = get(vertex_index, tg);
    property_map< diGraphInt, edge_weight_t >::type ew1m = get(edge_weight, tg);
    property_map< diGraphInt, edge_weight2_t >::type ew2m
        = get(edge_weight2, tg);

    {
        std::istringstream iss(test_graph1);
        assert(iss.good());
        read_data1(iss, tg);
        max_cr = maximum_cycle_ratio(tg, vim, ew1m, ew2m);
        cout << "Maximum cycle ratio is " << max_cr << endl;
        BOOST_TEST(std::abs(max_cr - 0.666666666) < epsilon);
        tg.clear();
    }

    {
        std::istringstream iss(test_graph2);
        read_data1(iss, tg);
        // TODO: This is causing a failuire, but I'm not really sure what it's
        // doing per se. Commented out for now.
        // BOOST_TEST(std::abs(maximum_cycle_ratio(tg, vim, ew1m, ew2m) +
        // (std::numeric_limits<double>::max)()) < epsilon );
        BOOST_TEST(std::abs(boost::maximum_cycle_ratio(tg, vim, ew1m, ew2m,
                                 static_cast< ccInt_t* >(0), my_float())
                        + 1000)
            < epsilon);
        tg.clear();
    }

    {
        std::istringstream iss(test_graph3);
        diGraphInt tgi;
        read_data1(iss, tgi);
        double max_cr = maximum_cycle_ratio(
            tgi, vim, ew1m, ew2m, static_cast< ccInt_t* >(0));
        cout << "Maximum cycle ratio is " << max_cr << endl;
        BOOST_TEST(std::abs(max_cr - 2.75) < epsilon);
        double maxmc = maximum_cycle_mean(tgi, vim, ew1m, get(edge_index, tgi));
        cout << "Maximum cycle mean is " << maxmc << endl;
        BOOST_TEST(std::abs(maxmc - 5.5) < epsilon);
        tg.clear();
    }

    {
        std::istringstream iss(test_graph4);
        read_data1(iss, tg);
        max_cr = maximum_cycle_ratio(tg, vim, ew1m, ew2m);
        cout << "Maximum cycle ratio is " << max_cr << endl;
        BOOST_TEST(std::abs(max_cr - 2.5) < epsilon);
        min_cr = minimum_cycle_ratio(tg, vim, ew1m, ew2m);
        cout << "Minimum cycle ratio is " << min_cr << endl;
        BOOST_TEST(std::abs(min_cr - 0.5) < epsilon);
        tg.clear();
    }

    {
        std::istringstream iss(test_graph5);
        read_data1(iss, tg);
        min_cr = minimum_cycle_ratio(tg, vim, ew1m, ew2m, &cc, my_float());
        BOOST_TEST(std::abs(min_cr - 0.666666666) < epsilon);
        cout << "Minimum cycle ratio is " << min_cr << endl;
        cout << "Critical cycle is:\n";
        for (ccInt_t::iterator itr = cc.begin(); itr != cc.end(); ++itr)
        {
            cout << "(" << get(vertex_name, tg, source(*itr, tg)) << ","
                 << get(vertex_name, tg, target(*itr, tg)) << ") ";
        }
        cout << endl;
        tg.clear();
    }

    {
        read_data(argv[1], tg);
        min_cr
            = boost::minimum_cycle_ratio(tg, vim, ew1m, ew2m, &cc, my_float2());
        cout << "Minimum cycle ratio is " << min_cr << endl;
        BOOST_TEST(std::abs(min_cr - 0.33333333333) < epsilon);
        cout << "Critical cycle is:" << endl;
        for (ccInt_t::iterator it = cc.begin(); it != cc.end(); ++it)
        {
            cout << "(" << get(vertex_name, tg, source(*it, tg)) << ","
                 << get(vertex_name, tg, target(*it, tg)) << ") ";
        }
        cout << endl;
        tg.clear();
    }

    {
        diGraphReal tgr;
        ccReal_t cc1;
        std::istringstream iss(test_graph6);
        read_data1(iss, tgr);
        max_cr = maximum_cycle_ratio(tgr, get(vertex_index, tgr),
            get(edge_weight, tgr), get(edge_weight2, tgr));
        cout << "Maximum cycle ratio is " << max_cr << endl;
        min_cr = minimum_cycle_ratio(tgr, get(vertex_index, tgr),
            get(edge_weight, tgr), get(edge_weight2, tgr), &cc);
        cout << "Minimal cycle ratio is " << min_cr << endl;
        std::pair< double, double > cr(.0, .0);
        cout << "Critical cycle is:\n";
        for (ccReal_t::iterator itr = cc.begin(); itr != cc.end(); ++itr)
        {
            cr.first += get(edge_weight, tgr, *itr);
            cr.second += get(edge_weight2, tgr, *itr);
            cout << "(" << get(vertex_name, tgr, source(*itr, tgr)) << ","
                 << get(vertex_name, tgr, target(*itr, tgr)) << ") ";
        }
        BOOST_TEST(std::abs(cr.first / cr.second - min_cr) < epsilon);
        cout << endl;
    }

    {
        GraphMInt gm(10);
        typedef graph_traits< GraphMInt >::vertex_iterator VertexItM;
        VertexItM vi1, vi2, vi_end;
        for (boost::tie(vi1, vi_end) = vertices(gm); vi1 != vi_end; ++vi1)
        {
            for (vi2 = vertices(gm).first; vi2 != vi_end; ++vi2)
                add_edge(*vi1, *vi2, gm);
        }
        max_cr = maximum_cycle_ratio(gm, get(vertex_index, gm),
            get(&CEdgeProps< int, int >::m_w1, gm),
            get(&CEdgeProps< int, int >::m_w2, gm));
        BOOST_TEST(std::abs(max_cr - 0.5) < epsilon);
    }

    return boost::report_errors();
}