]> gitweb.michael.orlitzky.com - dead/census-tools.git/commitdiff
Update the LinearProgramming module to depend directly on the lpsolve55 library.
authorMichael Orlitzky <michael@orlitzky.com>
Mon, 26 Apr 2010 19:44:27 +0000 (15:44 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Mon, 26 Apr 2010 19:44:27 +0000 (15:44 -0400)
src/LinearProgramming.py

index 71d02ffca6df6baef185d47ecfa62551201c7acb..5f4668a705d1e3972f42433ff045fa27ee427e71 100644 (file)
@@ -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.