COIN-OR::LEMON - Graph Library

Custom Query (545 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (55 - 57 of 545)

Ticket Resolution Summary Owner Reporter
#445 fixed Buggy initialization of CplexEnv Alpar Juttner Alpar Juttner
Description

A user reported obvious memory leak when solving many MIP problem with a fresh CplexMip instance for each. In addition valgrind report the following on CplexMip:

==10084== Conditional jump or move depends on uninitialised value(s)
==10084==    at 0x8104C32: lemon::CplexEnv::~CplexEnv() (cplex.cc:66)
==10084==    by 0x81051C8: lemon::CplexBase::~CplexBase() (cplex.cc:94)
==10084==    by 0x8108C8E: lemon::CplexMip::~CplexMip() (cplex.cc:880)

The reason is that the constructor of CplexEnv does not initialize the target of the _cnt pointer when it is allocated.

#639 fixed Bugs in Clp and Cplex Alpar Juttner Alpar Juttner
Description

The attached patch fixes the following bug.

  • Newer versions of CPLEX seem to require the dl library (whatever it is)
  • The implementation of adding new range-type constraints (e.g. 1<=x1+x2<=3) is wrong.
  • The row and column indices are swapped in the matrix query of ClpLp
#502 fixed Build broken with cmake 2.8 Alpar Juttner amluto
Description

[fe4ff72e2f14b62c5ff8f565db888186ab490275/lemon] broke the build using cmake 2.8, which does not recognize the CMP0048 policy. The attached patch fixes it for me (well, it fixes this particular regression).

Note: See TracQuery for help on using queries.