//
//Liner planning command
//

//Syntax
lp [variables] by [condition letter variable] [condition variable]

//
//Example optimization of the Plant problem
//
//Read LP condition of Plant problem. 
hand x1 - 6,joken,ans/
1650,1450,600,750,4100,8800,MAX,0
   1,   1,  1,  1,   1,   0,<=,60
   0,   1,  1,  1,   1,   1,<=,60
1000, 400,200,270, 750, 530,<=,20000
  84,  45,  0,  0,   0,   0,<=,3500
  60,  60,  0,  0,   0,   0,<=,4500
  54, 100,150,  0,   0,   0,<=,4800
   0,   0, 60,  0, 250,   0,<=,3900
   0,   0, 15,  0,  58, 370,<=,4200
   0,  90, 12,  0, 270, 780,<=,3600
;

//Execute Liner planning lp x1 - 6 by joken ans;

//Execute Integer planning to comparison of optimize value.

Optimized value by Integer planning is fewer than liner planning.