From: Michael Orlitzky Date: Mon, 26 Apr 2010 17:51:54 +0000 (-0400) Subject: Update the example linear program to use the new constants. X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dead%2Fcensus-tools.git;a=commitdiff_plain;h=f4fbf9196b0d9f8332bc908ceb9c26612501ebf0 Update the example linear program to use the new constants. --- 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 ]