X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=src%2FLinearProgramming.py;h=2e949d252bd65e18e175a9068d73c9cbc97a32e1;hb=d22e45b4d10c354f84e1de5ef92b6725675817f2;hp=88cdd8d8cc9f1bc5e8ece5bd8d5e7351308d9d89;hpb=72e0a1e1729a2c5693c94d7a835b0735f84d13ed;p=dead%2Fcensus-tools.git diff --git a/src/LinearProgramming.py b/src/LinearProgramming.py index 88cdd8d..2e949d2 100644 --- a/src/LinearProgramming.py +++ b/src/LinearProgramming.py @@ -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 *