COIN-OR::LEMON - Graph Library

Custom Query (545 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (28 - 30 of 545)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
Ticket Owner Reporter Resolution Summary
#632 Alpar Juttner Alpar Juttner duplicate CMAKE behavior changes
Description

CMAKE's way of handling of custom build type has stupidly changed, thus the Maintainer build type does not work as expected.

The attached path fixes it, but now it becomes impossible the overwrite the default Maintainer mode specific compiler flags. Does anyone know a better solution?

#5 Balazs Dezso Alpar Juttner fixed LpGlpk::_setColName strange naming bug
Description

Setting column names of GLPK is not working properly.

This change would solve the problem:

lp_glpk.cc line 117
void LpGlpk::_setColName(int col, const std::string & name)
{
- lpx_set_col_name(lp,col,const_cast(name.c_str()));
+ lpx_set_col_name(lp,col,const_cast(("["+name+"]").c_str())); 
}

This ticket is a copy of report #17 of the old bug tracking system. It refers to svn trunk -r2474. The original report was posted by Janos Tapolcai.

#21 Akos Ladanyi Alpar Juttner fixed Wrong '-I' compiler directives
Description

When the repository is compiled, -I. -I./lemon -I.. -I.. compilation directives are used, which is seriously wrong. The only directory to be added is the root of the source repository.

Currently, if we use a file name that has a counterpart in the standard directory (e.g. lemon/math.h), the the system files will also include this instead of the right one.

This bug appears both in the [1113f6d12c0c] and in the svn trun -r3441

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
Note: See TracQuery for help on using queries.