JWally / jsLPSolver

Simple OOP javaScript library to solve linear programs, and mixed integer linear programs
The Unlicense
420 stars 69 forks source link

Solver doesn't resolve #112

Open luke-thorburn opened 4 years ago

luke-thorburn commented 4 years ago

I have quite a large problem, with 317 variables and 789 constraints. When I try to solve it, the solver.Solve(...) function will run for many minutes without resolving. All variables are continuous, there are no integer variables.

  1. Is there any way to set say, 'verbose = true' to get messages in the console about the progress of the solver? (And so debug why it doesn't seem to resolve?)

  2. Alternately, is there a way to set a timeout for pure (non-integer) linear programs?

For reference, here is my problem description.

Thanks, Luke