From 669d1308da2e3147d28272b57c5718aca8fe7793 Mon Sep 17 00:00:00 2001 From: Jacob Magnusson Date: Wed, 27 Mar 2024 10:14:54 +0100 Subject: [PATCH] docs: Fix lpsolve module docs --- src/solvers/lpsolve.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/solvers/lpsolve.rs b/src/solvers/lpsolve.rs index 5a9945e..39f8d19 100644 --- a/src/solvers/lpsolve.rs +++ b/src/solvers/lpsolve.rs @@ -1,6 +1,5 @@ -//! A solver that uses a [Cbc](https://www.coin-or.org/Cbc/) [native library binding](https://docs.rs/coin_cbc). -//! This solver is activated using the default `coin_cbc` feature. -//! You can disable it an enable another solver instead using cargo features. +//! lp_solve is a free ([LGPL](https://lpsolve.sourceforge.net/5.5/LGPL.htm)) linear (integer) programming solver written in C and based on the revised simplex method. +//! good_lp uses the [lpsolve crate](https://docs.rs/lpsolve/) to call lpsolve. You will need a C compiler, but you won't have to install any additional library. use crate::solvers::{ObjectiveDirection, ResolutionError, Solution, SolverModel}; use crate::variable::UnsolvedProblem; use crate::{