[package]
edition = "2021"
name = "pounce-presolve"
version = "0.3.0"
authors = ["John Kitchin <jkitchin@andrew.cmu.edu>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Algorithmic NLP preprocessing as a TNLP wrapper for POUNCE: bound tightening, redundant-constraint removal, LICQ degeneracy detection."
readme = "README.md"
keywords = [
"presolve",
"nlp",
"optimization",
"ipopt",
"preprocessing",
]
categories = [
"mathematics",
"algorithms",
]
license = "EPL-2.0"
repository = "https://github.com/jkitchin/pounce"
[lib]
name = "pounce_presolve"
path = "src/lib.rs"
[[example]]
name = "auxiliary_noop"
path = "examples/auxiliary_noop.rs"
[[example]]
name = "block_solve_nonlinear"
path = "examples/block_solve_nonlinear.rs"
[[example]]
name = "btf_chain"
path = "examples/btf_chain.rs"
[[example]]
name = "coupling_demo"
path = "examples/coupling_demo.rs"
[[example]]
name = "dm_partition"
path = "examples/dm_partition.rs"
[[example]]
name = "frame_roundtrip"
path = "examples/frame_roundtrip.rs"
[[example]]
name = "match_3x3"
path = "examples/match_3x3.rs"
[[example]]
name = "phase0_via_tnlp"
path = "examples/phase0_via_tnlp.rs"
[[example]]
name = "pipeline_demo"
path = "examples/pipeline_demo.rs"
[[test]]
name = "pipeline_end_to_end"
path = "tests/pipeline_end_to_end.rs"
[dependencies.pounce-common]
version = "0.3.0"
[dependencies.pounce-nlp]
version = "0.3.0"
[dependencies.tracing]
version = "0.1"
[lints.clippy]
expect_used = "warn"
unwrap_used = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
unsafe_op_in_unsafe_fn = "warn"