From 413d93ccb457e7cfd35b38bb5afdba0b4b410760 Mon Sep 17 00:00:00 2001 From: KnorpelSenf Date: Thu, 26 Dec 2024 15:06:54 +0100 Subject: [PATCH 1/2] docs: mention precompiled scip binary in overview --- README.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index b560fd7..e315a36 100644 --- a/README.md +++ b/README.md @@ -74,15 +74,16 @@ you can also activate other solvers using cargo features. | [`lpsolve`][lpsolve] | ✅ | ❌ | ✅ | ❌ | ❌ | | [`microlp`][microlp] | ✅ | ✅ | ✅ | ❌ | ✅ | | [`lp-solvers`][lps] | ✅ | ✅ | ✅ | ❌ | ❌ | -| [`scip`][scip] | ✅ | ✅ | ❌ | ✅ | ❌ | -| [`cplex-rs`][cplex] | ✅ | ❌ | ✅\+\+ | ✅ | ❌ | -| [`clarabel`][clarabel] | ❌ | ✅ | ✅ | ✅ | ✅\+\+\+ | +| [`scip`][scip] | ✅ | ✅ | ✅\+\+ | ✅ | ❌ | +| [`cplex-rs`][cplex] | ✅ | ❌ | ✅\+\+\+ | ✅ | ❌ | +| [`clarabel`][clarabel] | ❌ | ✅ | ✅ | ✅ | ✅\+\+\+\+ | - \* no C compiler: builds with only cargo, without requiring you to install a C compiler - \*\* no additional libs: works without additional libraries at runtime, all the dependencies are statically linked -- \+ highs itself is statically linked and does not require manual installation. However, on some systems, you may have to [install dependencies of highs itself](https://github.com/rust-or/good_lp/issues/29). -- \+\+ the cplex_rs crate links statically to a local installation of the IBM ILOG CPLEX Optimizer. -- \+\+\+ to use clarabel for WASM targets, set the `clarabel-wasm` feature flag +- \+ highs itself is statically linked and does not require manual installation. However, on some systems, you may have to [install dependencies of highs itself](https://github.com/rust-or/good_lp/issues/29). +- \+\+ using the precompiled binary is possible by enabling the optional `scip_bundled` feature +- \+\+\+ the cplex_rs crate links statically to a local installation of the IBM ILOG CPLEX Optimizer. +- \+\+\+\+ to use clarabel for WASM targets, set the `clarabel-wasm` feature flag To use an alternative solver, put the following in your `Cargo.toml`: From 7645831fe911e9e9dbd7a5d5ebbbfee508fa42ff Mon Sep 17 00:00:00 2001 From: KnorpelSenf Date: Fri, 27 Dec 2024 15:08:13 +0100 Subject: [PATCH 2/2] docs: fix missing language specifier --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 95a335a..c4ad93d 100644 --- a/README.md +++ b/README.md @@ -176,7 +176,7 @@ SCIP is currently one of the fastest open-source solvers for mixed integer progr You can also use a custom installation of SCIP by enabling only the `scip` feature. A good way of installing SCIP is by downloading a precompiled package from [here](https://scipopt.org/index.php#download) or through conda by running -``` +```sh conda install --channel conda-forge scip ```