COIN-OR::LEMON - Graph Library

Custom Query (545 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (106 - 108 of 545)

Ticket Resolution Summary Owner Reporter
#477 fixed Turn on LEMON_ENABLE_DEBUG in Debug mode Alpar Juttner Alpar Juttner
Description

CMAKE should set -DLEMON_ENABLE_DEBUG in Debug mode. (This is basically relevant to the test and demo codes only)

#478 fixed checkBoundMaps() fails in test/min_cost_flow_test.cc Alpar Juttner Alpar Juttner
Description

test/min_cost_flow_test.cc fails when LEMON_ENABLE_DEBUG is turned on.

The easiest way of reproducing the problem is to apply dd57dfa12bd5.patch of #477, then build the source using Maintainer build type.

#479 fixed Default MIP solver typdef broken with GLPK backend Alpar Juttner Gabor Retvari
Description

The default MIP solver typedef (lemon::Mip) seems to be broken with GLPK in current head.

The reason seems to be this typo in lp.h, introduced in 1233:fc3854d936f7:

#if LEMON_DEFAULT_MIP == GLPK
  typedef GlpkLp Mip;
...

The trivial fix removes all compile errors:

#if LEMON_DEFAULT_MIP == GLPK
  typedef GlpkMip Mip;
...
Note: See TracQuery for help on using queries.