Changeset 999:00f8d9f9920d in lemon-main
- Timestamp:
 - 09/13/12 12:02:27 (13 years ago)
 - Branch:
 - default
 - Children:
 - 1000:404b98971e1f, 1008:d216e1c8b3fa
 - Phase:
 - public
 - Files:
 - 
          
- 4 edited
 
- 
          lemon/planarity.h (modified) (1 diff)
 - 
          test/bellman_ford_test.cc (modified) (1 diff)
 - 
          test/digraph_test.cc (modified) (1 diff)
 - 
          test/fractional_matching_test.cc (modified) (2 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
        
lemon/planarity.h
r877 r999 73 73 74 74 void discover(const Arc& arc) { 75 Node source = _graph.source(arc);76 75 Node target = _graph.target(arc); 77 76  - 
        
test/bellman_ford_test.cc
r880 r999 191 191 192 192 ListPath<Digraph> path; 193 Value dist ;193 Value dist = 0; 194 194 bool reached = bellmanFord(gr,length).path(path).dist(dist).run(s,t); 195 195  - 
        
test/digraph_test.cc
r998 r999 443 443 a3 = g.addArc(n2, n3), 444 444 a4 = g.addArc(n2, n3); 445 ignore_unused_variable_warning(a2,a3,a4); 445 446 446 447 digraphCopy(g, G).nodeRef(nref).run();  - 
        
test/fractional_matching_test.cc
r877 r999 343 343 pv += weight[mwfm.matching(n)]; 344 344 SmartGraph::Node o = graph.target(mwfm.matching(n)); 345 ignore_unused_variable_warning(o); 345 346 } else { 346 347 check(mwfm.nodeValue(n) == 0, "Invalid matching"); … … 407 408 pv += weight[mwpfm.matching(n)]; 408 409 SmartGraph::Node o = graph.target(mwpfm.matching(n)); 410 ignore_unused_variable_warning(o); 409 411 } 410 412  
Note: See TracChangeset
          for help on using the changeset viewer.
      
