From f4fbf9196b0d9f8332bc908ceb9c26612501ebf0 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Mon, 26 Apr 2010 13:51:54 -0400 Subject: [PATCH] Update the example linear program to use the new constants. --- bin/example-lp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/example-lp b/bin/example-lp index 25b0453..160d8a4 100755 --- a/bin/example-lp +++ b/bin/example-lp @@ -25,7 +25,7 @@ lp.constraint_matrix = [ [1,1,1,0,0,0], [0,1,0,0,1,0], [0,0,1,0,0,1] ] -lp.inequalities = ([LinearProgramming.LEQ] * 2) + ([LinearProgramming.EQ] * 3) +lp.inequalities = ([LinearProgramming.LE] * 2) + ([LinearProgramming.EQ] * 3) lp.rhs = [ 500, 600, 400, 300, 200 ] -- 2.43.2