Backport [8a3fb3155dca] (Bugfix in test/maps_test.cc) to branch 1.2 (#469) 1.2 r1.2.4
authorAlpar Juttner <alpar@cs.elte.hu>
Wed, 24 Jul 2013 10:21:35 +0200
branch1.2
changeset 1277e13061207f85
parent 1276 bb4fde5d0634
child 1278 92d53f86d1a9
Backport [8a3fb3155dca] (Bugfix in test/maps_test.cc) to branch 1.2 (#469)
NEWS
test/maps_test.cc
     1.1 --- a/NEWS	Sat Aug 10 12:25:35 2013 +0200
     1.2 +++ b/NEWS	Wed Jul 24 10:21:35 2013 +0200
     1.3 @@ -19,6 +19,7 @@
     1.4          #461: Bugfix in assert.h
     1.5          #470: Fix compilation issues related to various gcc versions
     1.6          #439: Bugfix in biNodeConnected()
     1.7 +        #469: Bugfix in test/maps_test.cc
     1.8  
     1.9  2011-11-09 Version 1.2.3 released
    1.10  
     2.1 --- a/test/maps_test.cc	Sat Aug 10 12:25:35 2013 +0200
     2.2 +++ b/test/maps_test.cc	Wed Jul 24 10:21:35 2013 +0200
     2.3 @@ -535,7 +535,8 @@
     2.4            "Wrong SourceMap or TargetMap");
     2.5  
     2.6      typedef Orienter<Graph, const ConstMap<Edge, bool> > Digraph;
     2.7 -    Digraph dgr(gr, constMap<Edge, bool>(true));
     2.8 +    ConstMap<Edge, bool> true_edge_map(true);
     2.9 +    Digraph dgr(gr, true_edge_map);
    2.10      OutDegMap<Digraph> odm(dgr);
    2.11      InDegMap<Digraph> idm(dgr);
    2.12