jsLPSolver icon indicating copy to clipboard operation
jsLPSolver copied to clipboard

Simple OOP javaScript library to solve linear programs, and mixed integer linear programs

Results 37 jsLPSolver issues
Sort by recently updated
recently updated
newest added

This is working great for simple problems, but is there no way to build constraints as expressions using variable attributes, like: ``` constraints": { "wood": {"max": "storage"}, "labor" + "storage":...

Hello, I was searching for a JS MILP Solver and here it is! Actually I was wondering if adding function API for constraint system definition was planned? Let me explain:...

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...

JWs comment on this issue #21 implies that this is not possible, but I can't figure out how. This is my use of this library, https://github.com/AncientSwordRage/ponder I want to extend...

Have to say this is a really great solver though I'm running into a little trouble creating a slightly complicated model. Effectively I want to create some binary variables that...

Maybe it's just wrong when installing globally with npm and running as a js file from the command line, but I need to **require("javascript-lp-solver");** with node 13.5 on windows. Please...

On systems that don't use LF instead of CRLF for newlines the current `clean_data` function in `src/External/lpsolve/main.js` doesn't correctly split lines.

I'm clicking around in the codebase a bunch, sorry if I missed something, but is there anyway to implement a not equals constraint?

Hello, thank you so much for all of your hard work on this amazing module! I just wanted to report a possible issue in your README documentation, regarding setting the...

hello, i wanna solve a big model but i have a problem when i try to use the var as int or bin i get result if i don't add...