I think the character 'L' represents <=, how about strictly less than i.e. '<'?
Asked
Active
Viewed 1,717 times
2
-
You can't use a strict inequality. LP and MIP solvers only support <=. – Erwin Kalvelagen Mar 06 '17 at 01:43
-
Is there some kind of workaround for these inequalities? – Stanley Gan Mar 06 '17 at 01:55
-
3Instead of say `x+y<1` you can formulate `x+y<=0.999`. – Erwin Kalvelagen Mar 06 '17 at 02:01
-
Yea thought of that but one of my variables may take quite small values. May be I should consider restricting the range of my input values in order to avoid variables taking such small values. – Stanley Gan Mar 06 '17 at 02:08
-
A complicating factor are feasibility tolerances. You may want to loop up what they are. – Erwin Kalvelagen Mar 06 '17 at 02:14