ockham 0.1.1

A comprehensive Operations Research toolkit for linear programming, optimization, and mathematical modeling
Documentation
[package]
name = "ockham"
version = "0.1.1"
edition = "2021"
authors = ["ockham contributors"]
description = "A comprehensive Operations Research toolkit for linear programming, optimization, and mathematical modeling"
license = "MIT OR Apache-2.0"
repository = "https://github.com/ethqnol/ockham-rs"
keywords = ["optimization", "linear-programming", "operations-research", "simplex", "solver"]
categories = ["algorithms", "mathematics", "science"]
readme = "README.md"

[dependencies]
thiserror = "1.0"
serde = { version = "1.0", features = ["derive"], optional = true }
rayon = { version = "1.8", optional = true }
nalgebra = { version = "0.33", optional = true }
approx = "0.5"

[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
proptest = "1.4"

[features]
default = ["serde"]
serde = ["dep:serde"]
parallel = ["rayon"]
linalg = ["nalgebra"]

[[bench]]
name = "simplex_benchmark"
harness = false

[profile.release]
opt-level = 3
lto = true
codegen-units = 1