From: Michael Orlitzky Date: Mon, 26 Apr 2010 19:44:27 +0000 (-0400) Subject: Update the LinearProgramming module to depend directly on the lpsolve55 library. X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dead%2Fcensus-tools.git;a=commitdiff_plain;h=1d653bc20a916a4b486fa0ed30098f0bb950833a Update the LinearProgramming module to depend directly on the lpsolve55 library. --- diff --git a/src/LinearProgramming.py b/src/LinearProgramming.py index 71d02ff..5f4668a 100644 --- a/src/LinearProgramming.py +++ b/src/LinearProgramming.py @@ -13,7 +13,7 @@ import sys LP_SOLVE_PATH = '/../lib/lp_solve' site.addsitedir(os.path.dirname(os.path.abspath(sys.argv[0])) + LP_SOLVE_PATH) -from lp_solve import * +from lpsolve55 import * # Constants representing the two types of linear programs.