COIN-OR::LEMON - Graph Library

Changeset 1277:e13061207f85 in lemon


Ignore:
Timestamp:
07/24/13 10:21:35 (11 years ago)
Author:
Alpar Juttner <alpar@…>
Branch:
1.2
Phase:
public
Tags:
r1.2.4
Message:

Backport [8a3fb3155dca] (Bugfix in test/maps_test.cc) to branch 1.2 (#469)

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • NEWS

    r1275 r1277  
    2020        #470: Fix compilation issues related to various gcc versions
    2121        #439: Bugfix in biNodeConnected()
     22        #469: Bugfix in test/maps_test.cc
    2223
    23242011-11-09 Version 1.2.3 released
  • test/maps_test.cc

    r1263 r1277  
    536536
    537537    typedef Orienter<Graph, const ConstMap<Edge, bool> > Digraph;
    538     Digraph dgr(gr, constMap<Edge, bool>(true));
     538    ConstMap<Edge, bool> true_edge_map(true);
     539    Digraph dgr(gr, true_edge_map);
    539540    OutDegMap<Digraph> odm(dgr);
    540541    InDegMap<Digraph> idm(dgr);
Note: See TracChangeset for help on using the changeset viewer.