good_lp 1.8.1

Mixed Integer Linear Programming for Rust, with an user-friendly API. This crate allows modeling LP problems, and lets you solve them with various solvers.
Documentation
[[bench]]
harness = false
name = "benchmark"
[dependencies.clarabel]
features = []
optional = true
version = "0.7.1"

[dependencies.coin_cbc]
default-features = false
optional = true
version = "0.1"

[dependencies.cplex-rs]
optional = true
version = "0.1"

[dependencies.fnv]
version = "1.0.5"

[dependencies.highs]
optional = true
version = "1.5.0"

[dependencies.lp-solvers]
features = ["cplex"]
optional = true
version = "1.0.0"

[dependencies.lpsolve]
optional = true
version = "0.1"

[dependencies.minilp]
optional = true
version = "0.2"

[dependencies.russcip]
optional = true
version = "0.3.4"
[dev-dependencies.criterion]
version = "0.5"

[dev-dependencies.float_eq]
version = "1.0"

[features]
all_default_solvers = ["coin_cbc", "minilp", "lpsolve", "highs", "russcip", "lp-solvers", "clarabel"]
default = ["coin_cbc", "singlethread-cbc"]
scip = ["russcip"]
singlethread-cbc = ["coin_cbc?/singlethread-cbc"]

[package]
authors = ["Ophir LOJKINE <contact@ophir.dev>"]
categories = ["mathematics", "algorithms", "science", "api-bindings", "data-structures"]
description = " Mixed Integer Linear Programming for Rust, with an user-friendly API. This crate allows modeling LP problems, and lets you solve them with various solvers."
documentation = "https://docs.rs/good_lp"
edition = "2018"
keywords = ["linear-programming", "optimization", "symbolic", "math", "solver"]
license = "MIT"
name = "good_lp"
readme = "README.md"
repository = "https://github.com/rust-or/good_lp"
version = "1.8.1"
[package.metadata.docs.rs]
all-features = false
default-target = "x86_64-unknown-linux-gnu"
features = ["all_default_solvers"]
rustdoc-args = ["--cfg", "docsrs"]
targets = ["x86_64-unknown-linux-gnu"]