good_lp icon indicating copy to clipboard operation
good_lp copied to clipboard

Linear Programming for Rust, with a user-friendly API. This crate allows modeling LP problems, and lets you solve them with various solvers.

Results 20 good_lp issues
Sort by recently updated
recently updated
newest added

I am using `good_lp` (at the moment with `minilp`). I am interested in exact solutions for rational numbers, and therefore I would like to experiment with [`relp`](https://github.com/vandenheuvel/relp). This is a...

SCIP is one of the commonly-used MI(N)LP solvers and could be of interest to the rust-or communities (free and source available for academic use). I'd be willing to help add...

enhancement

I was wondering if this library could be made to call Gurobi by partnering with the already existing https://github.com/ykrist/rust-grb

enhancement

I added an API to set [HiGHS options](https://www.maths.ed.ac.uk/hall/HiGHS/HighsOptions.html) to the `HighsProblem` struct. This solves #18 . Currently the API is not safe enough, we can still add invalid key and...

Hi 👋 I have noticed that the `ProblemVariables` struct has a `display` function that is very convenient in order to print for example the list of constraints. However, once you...

Hi again! Most, if not all, of the solver allow to give a feasible solution to the solver. I have a case where I have a solution that is optimal,...

Is it possible to add support for the "alldifferent" constraint where the solver supports it?

Hi, I was trying to use good_lp to solve the model in the readme example. However, I had a compiling issues here: ``` linking with `cc` failed: exit status: 1...

Hexaly is a new but rapidly rising solver in recent month that has outperformed some well-established solvers, such as Gurobi and CPLEX in terms of runtime. Is there a possibility...