so i'm looking at linear programming solvers and i'm wondering if out there, there is not a solver per se, but something that will generate static code for a particular problem
Conversation
idea being instead of having the lp library as a dependency, you just "bake" a single instance and ship that instead
1
1
Replying to
How would you do that? LPs don’t have closed-form solutions, only algorithms (simplex, interior point). All you can do is cast the problem into the canonical form and call the solver.
Show replies

