From: Michael Orlitzky Date: Mon, 19 Apr 2010 04:56:35 +0000 (-0400) Subject: Update example-lp to use the LinearProgram class. X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dead%2Fcensus-tools.git;a=commitdiff_plain;h=67fdc5e87920a4e5c9a6397cb29217f81dc024bd Update example-lp to use the LinearProgram class. --- diff --git a/bin/example-lp b/bin/example-lp index 210a055..25b0453 100755 --- a/bin/example-lp +++ b/bin/example-lp @@ -8,25 +8,28 @@ import os import site import sys -# Add LP_SOLVE_PATH to our path. -LP_SOLVE_PATH = '../lib/lp_solve' -site.addsitedir(os.path.dirname(os.path.abspath(sys.argv[0])) + '/' + LP_SOLVE_PATH) +# Basically, add '../src' to our path. +# Needed for the imports that follow. +site.addsitedir(os.path.dirname(os.path.abspath(sys.argv[0])) + '/../src') -from lp_solve import * +import LinearProgramming -c = [5, 100, 30, 10, 20, 300] -A = [ [1,1,1,0,0,0], - [0,0,0,1,1,1], - [1,0,0,1,0,0], - [0,1,0,0,1,0], - [0,0,1,0,0,1] ] +lp = LinearProgramming.LinearProgram() -e = [ -1, -1, 0, 0, 0 ] +lp.objective_function_coefficients = [5, 100, 30, 10, 20, 300] -b = [ 500, 600, 400, 300, 200 ] +lp.constraint_matrix = [ [1,1,1,0,0,0], + [0,0,0,1,1,1], + [1,0,0,1,0,0], + [0,1,0,0,1,0], + [0,0,1,0,0,1] ] -[v,x,duals] = lp_solve(c,A,b,e) +lp.inequalities = ([LinearProgramming.LEQ] * 2) + ([LinearProgramming.EQ] * 3) + +lp.rhs = [ 500, 600, 400, 300, 200 ] + +[v,x,duals] = lp.solve() print 'Optimal objective function value: ', v print 'Optimal solution vector: ', x