标签: gams-math
SET i /i1 * i10/ ; VARIABLES x(i) y ;
我有一个优化(mip)问题,我需要控制变量y等于x的第二最小数字。 我该如何创建方程式?
x
EQUATIONS myconstraint ; myconstraint .. y =E= (second smallest element of x) ;