-
Hi, i have a problem with the following variables: 0 <= indicator_variable_0 <= 1 Integer and constraints: __C1: mem_pointer_0 >= 196 The _C7, _C8 and _C9, _C10 constraint pairs can be rewritten as: mem_pointer_0 - mem_pointer_2 not in [-1176, 196] based on the description of:
and considering that:
Based on these, I think a feasible solution would be: However I got an error at the end: I have PuLP version 2.3, and saved out an .mps file for the problem together with a log from cbc: What am I missing here? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
This can be or not related to your problem. You're using very large integer numbers (67108864) with integer variables and CBC usually gets confused when you do that. Try scaling your problem so it uses less significant digits. |
Beta Was this translation helpful? Give feedback.
This can be or not related to your problem. You're using very large integer numbers (67108864) with integer variables and CBC usually gets confused when you do that. Try scaling your problem so it uses less significant digits.