! Beasley "Animal feed"
! http://people.brunel.ac.uk/~mastjjb/jeb/or/moreip.html
! "Integer Programming" X=0.9 0 0.1 0 1 1 1 0, z*=36
min 40x1 + 60x2 + 0x3 + 15y
st
 x1 + x2 + x3 = 1
100 x1 +200 x2 - 90 z1 > 0
 80 x1 +150 x2 - 50 z2 > 0
 40 x1 + 20 x2 - 20 z3 > 0
 10 x2 - 2 z4 > 0
 x2 - y < 0
 z1 + z2 + z3 + z4 > 3
end
int y
int z1
int z2
int z3
int z4

