An Infeasible Problem (lp9)
/****************************************************************/
/* S A S S A M P L E L I B R A R Y */
/* */
/* NAME: LP9 */
/* TITLE: An Infeasible Problem (lp9) */
/* PRODUCT: OR */
/* SYSTEM: ALL */
/* KEYS: LP */
/* PROCS: LP */
/* DATA: */
/* */
/* SUPPORT: UPDATE: */
/* REF: */
/* MISC: */
/* */
/****************************************************************/
data infeas;
format _id_ $6.;
input _id_ $ x1-x4 _type_ $ _rhs_;
datalines;
profit 1 1 1 1 max .
const1 1 3 2 4 le 5
const2 3 1 2 1 le 4
const3 5 3 3 3 eq 9
;
proc lp;
run;