Hello,
Could i put a restriction in a variable, depending the valor of the same variable?
I try to put:
Binary Variable: x(i,k)
R(i,k).. x(i,k)$(x(i,k) eq 1) =g= x(i,k+1);
But this code doesn’t work. How can i do something like before?
I want that if x(1,1)=1 =>x(1,2)=1 or 0 but if x(1,1)=0=> x(1,2)=1 or 0. (Because if a put x(i,k)=g=x(i,k+1) always x(1,1) will be 1 and i don’t want.)
Please, I’m very grateful of your help.
Best Regards
Hola Eduardo.
What you are trying to accomplish is called disjunctive programming and is non trivial. Besides the theory to write that kind of constraints “on your own”, there are some pre built solutions in GAMS. Checkout EMP:https://www.gams.com/latest/docs/userguides/mccarl/extended_mathematical_programs.htm?cp=0_2_1_2_3_0_13 and LogMIP: http://www.logmip.ceride.gov.ar/
Thank you very much Cladelpino.
Your advice was very useful. But I couldn’t get a good solution with COUNNEE solvers. I had to use SCIP solver although this only compile 1000 seconds (less than I need).