From 1d653bc20a916a4b486fa0ed30098f0bb950833a Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Mon, 26 Apr 2010 15:44:27 -0400 Subject: [PATCH] Update the LinearProgramming module to depend directly on the lpsolve55 library. --- src/LinearProgramming.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.43.2