Skip to content

Commit 564a8ae

Browse files
authored
Merge pull request #44 from jacobsvante/patch-1
docs: Fix lpsolve module docs
2 parents 369cec3 + 669d130 commit 564a8ae

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/solvers/lpsolve.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
//! A solver that uses a [Cbc](https://www.coin-or.org/Cbc/) [native library binding](https://docs.rs/coin_cbc).
2-
//! This solver is activated using the default `coin_cbc` feature.
3-
//! You can disable it an enable another solver instead using cargo features.
1+
//! 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.
2+
//! 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.
43
use crate::solvers::{ObjectiveDirection, ResolutionError, Solution, SolverModel};
54
use crate::variable::UnsolvedProblem;
65
use crate::{

0 commit comments

Comments
 (0)