Closed etiennecallies closed 7 months ago
Odd. With my build of current stable there is no problem, but building release I get infeasible.
Will look into it
It was lack of a tolerance in a test - which was stupid. Worked with some compiler options. Lower bound on an integer variable was computed to be 2.0210993372731735e-16 which is >0 so bound was set to 1! Should be fixed in stable.
Thanks for your thorough examination @jjhforrest šš» I'll wait for the next release.
Hi!
I think I discovered this bug on CBC using pulp: https://github.com/coin-or/pulp/issues/662
Here is my cbc version:
Here is the problem using Pulp framework:
It is indeed solvable if all x are 1 and c are 0. However I get
Infeasible
. As I said in the other issue, it is very weird since we just have to change a constraint to make itOptimal
. For example with this little change:Here is the Pulp file:
Here is the MPS file:
Here is the output:
Thanks