X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dead%2Fcensus-tools.git;a=blobdiff_plain;f=bin%2Fexample-lp;h=160d8a40810a682aec85768c9cef6fd85fe96712;hp=25b04539dfa3370b25e4846694bff87b3d35c2bf;hb=f4fbf9196b0d9f8332bc908ceb9c26612501ebf0;hpb=f593abe7e919c86544ea40a0e29b3425bcdae60f 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 ]