COIN-OR::LEMON - Graph Library

Custom Query (545 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (1 - 3 of 545)

1 2 3 4 5 6 7 8 9 10 11
Ticket Resolution Summary Owner Reporter
#12 fixed compiling under MSdev Akos Ladanyi Alpar Juttner
Description

The following change are necessary to compile lp_glpk under MSdev:

-lp_glpk.cc(67):    int ind[LEMON_glp(get_num_cols)(glp.lp)];
-lp_glpk.cc(68):    Value val[1+LEMON_glp(get_num_cols)(glp.lp)];

+lp_glpk.cc(67):   int* ind=new int[LEMON_glp(get_num_cols)(glp.lp)];
+lp_glpk.cc(68):   Value* val=new Value[1+LEMON_glp(get_num_cols)(glp.lp)];
+lp_glpk.cc(91):	delete [] ind; delete [] val;

I do not even understand how can it be compiled under gcc?

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

#13 fixed Doc files are missing from the tarball Akos Ladanyi Alpar Juttner
Description

The following command sequence doesn't put the doc files into the tarball.

autoreconf -vi
./configure
make
make dist

This bug exists in [9bd0d6e0c279].

#16 fixed Automatic doc generation for the main hg repo Akos Ladanyi Alpar Juttner
Description

It should be done similarly to the way how the documentation is generated from the svn repository.

1 2 3 4 5 6 7 8 9 10 11
Note: See TracQuery for help on using queries.