Changeset 1277:e13061207f85 in lemon
- Timestamp:
- 07/24/13 10:21:35 (12 years ago)
- Branch:
- 1.2
- Phase:
- public
- Tags:
- r1.2.4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
NEWS
r1275 r1277 20 20 #470: Fix compilation issues related to various gcc versions 21 21 #439: Bugfix in biNodeConnected() 22 #469: Bugfix in test/maps_test.cc 22 23 23 24 2011-11-09 Version 1.2.3 released -
test/maps_test.cc
r1263 r1277 536 536 537 537 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); 539 540 OutDegMap<Digraph> odm(dgr); 540 541 InDegMap<Digraph> idm(dgr);
Note: See TracChangeset
for help on using the changeset viewer.