Skip to content

Commit

Permalink
Merge pull request #44 from jacobsvante/patch-1
Browse files Browse the repository at this point in the history
docs: Fix lpsolve module docs
  • Loading branch information
lovasoa committed Mar 27, 2024
2 parents 369cec3 + 669d130 commit 564a8ae
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/solvers/lpsolve.rs
Original file line number Diff line number Diff line change
@@ -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::{
Expand Down

0 comments on commit 564a8ae

Please sign in to comment.