]> gitweb.michael.orlitzky.com - dead/census-tools.git/commitdiff
Update the search path within the LinearProgramming module.
authorMichael Orlitzky <michael@orlitzky.com>
Mon, 10 May 2010 17:39:25 +0000 (13:39 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Mon, 10 May 2010 17:39:25 +0000 (13:39 -0400)
src/LinearProgramming.py

index 88cdd8d8cc9f1bc5e8ece5bd8d5e7351308d9d89..2e949d252bd65e18e175a9068d73c9cbc97a32e1 100644 (file)
@@ -11,7 +11,7 @@ import sys
 # Add LP_SOLVE_PATH to our path. There is no point to this variable
 # other than to make the site.addsitedir() line fit within 80
 # characters.
-LP_SOLVE_PATH = '/../lib/lp_solve'
+LP_SOLVE_PATH = '/../../lib/lp_solve'
 site.addsitedir(os.path.dirname(os.path.abspath(sys.argv[0])) + LP_SOLVE_PATH)
 
 from lpsolve55 import *