COIN-OR::LEMON - Graph Library

Custom Query (545 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (43 - 45 of 545)

Ticket Resolution Summary Owner Reporter
#195 fixed Bug fix in ConEdgeIt implementation Peter Kovacs Peter Kovacs
Description

The attached patch contains a bug fix for ConEdgeIt.

Since the erroneous code is in the 1.0 branch, too, I made the patch on the top of [62f9787c516c]. However the only example I found to indicate the error uses adaptors.

Here it is:

#include<lemon/list_graph.h>
#include<lemon/adaptors.h>
#include<test/graph_test.h>

using namespace lemon;

int main() {
  ListGraph graph;
  ListGraph::Node n1 = graph.addNode();
  ListGraph::Node n2 = graph.addNode();
  ListGraph::Node n3 = graph.addNode();
  graph.addEdge(n1,n2);
  graph.addEdge(n1,n3);
  graph.addEdge(n2,n3);
  
  checkGraphConEdgeList(undirector(graph), 6);

  return 0;
}

If you try to compile and run this code using [919878a41a60], it will fall into an infinite loop!

#171 fixed Bug fix in SmartGraph::restoreSnapshot() Peter Kovacs Peter Kovacs
Description

[5a3d689ea770] contains a bug fix in SmartGraph::restoreSnapshot() on the top of [00c8843d491d] (see #170).

#141 fixed Bug fix in UndirDigraphExtender Peter Kovacs Peter Kovacs
Description

[c760d691fe3c] contains a bug fix. It provides u() and v() instead of source() and target() for edges.

Note: See TracQuery for help on using queries.