Good Day. I am trying to develop a Cut Order Planning model using LINGO
!There are 8 integer variables; x1+x2+x3+x4+x5+x6+x7+x8 <=16;
!Identify the values of the following variables:
y1 = 160/x1;
y2 = 448/x2;
y3 = 832/x3;
y4 = 1408/x4;
y5 = 896/x5;
y6 = 544/x6;
y7 = 320/x7;
y8 = 192 / x8;
!Determine the minimum variable with the lowest value:
min(y1, y2, y3, y4, y5, y6, y7, y8);
In Lingo scripting language, it could be written as:
Use 'Solver|Generate|Display-Model menu item to see the scalar version.