[package]
edition = "2021"
name = "pounce-sensitivity"
version = "0.2.0"
authors = ["John Kitchin <jkitchin@andrew.cmu.edu>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Sensitivity analysis / parametric NLP warm-start / reduced Hessian for POUNCE — port of upstream Ipopt's sIPOPT contrib (Pirnay, López-Negrete, Biegler 2012)."
readme = "README.md"
keywords = [
"sipopt",
"sensitivity",
"nlp",
"ipopt",
"parametric",
]
categories = [
"mathematics",
"algorithms",
"science",
]
license = "EPL-2.0"
repository = "https://github.com/jkitchin/pounce"
[lib]
name = "pounce_sensitivity"
path = "src/lib.rs"
[[example]]
name = "parametric_mpc"
path = "examples/parametric_mpc.rs"
[[example]]
name = "sensitivity_factor_reuse_bench"
path = "examples/sensitivity_factor_reuse_bench.rs"
[[example]]
name = "sensitivity_session"
path = "examples/sensitivity_session.rs"
[[test]]
name = "adapter_trait_pipeline"
path = "tests/adapter_trait_pipeline.rs"
[[test]]
name = "convenience_api"
path = "tests/convenience_api.rs"
[[test]]
name = "parametric_cpp"
path = "tests/parametric_cpp.rs"
[[test]]
name = "solver_session"
path = "tests/solver_session.rs"
[dependencies.pounce-algorithm]
version = "0.2.0"
[dependencies.pounce-common]
version = "0.2.0"
[dependencies.pounce-linalg]
version = "0.2.0"
[dependencies.pounce-nlp]
version = "0.2.0"
[lints.clippy]
expect_used = "warn"
unwrap_used = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
unsafe_op_in_unsafe_fn = "warn"