[package]
edition = "2024"
name = "pounce-cli"
version = "0.9.0"
authors = ["John Kitchin <jkitchin@andrew.cmu.edu>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line driver for POUNCE — solves built-in TNLPs and AMPL .nl files."
readme = "README.md"
keywords = [
"ipopt",
"cli",
"ampl",
"nlp",
"optimization",
]
categories = [
"mathematics",
"command-line-utilities",
"science",
]
license = "EPL-2.0"
repository = "https://github.com/jkitchin/pounce"
[features]
default = []
ma57 = [
"dep:pounce-hsl",
"pounce-algorithm/ma57",
]
[lib]
name = "pounce_cli"
path = "src/lib.rs"
[[bin]]
name = "pounce"
path = "src/main.rs"
[[bin]]
name = "pounce_cblib"
path = "src/bin/pounce_cblib.rs"
[[bin]]
name = "pounce_sens"
path = "src/bin/pounce_sens.rs"
[[test]]
name = "ampl_driver_conventions"
path = "tests/ampl_driver_conventions.rs"
[[test]]
name = "auxiliary_presolve"
path = "tests/auxiliary_presolve.rs"
[[test]]
name = "cblib_cbf"
path = "tests/cblib_cbf.rs"
[[test]]
name = "cblib_vs_nlp"
path = "tests/cblib_vs_nlp.rs"
[[test]]
name = "check_x0_subcommand"
path = "tests/check_x0_subcommand.rs"
[[test]]
name = "cite_hint_flag"
path = "tests/cite_hint_flag.rs"
[[test]]
name = "dispatch_routing"
path = "tests/dispatch_routing.rs"
[[test]]
name = "exp_cone_vs_nlp"
path = "tests/exp_cone_vs_nlp.rs"
[[test]]
name = "false_local_infeasibility"
path = "tests/false_local_infeasibility.rs"
[[test]]
name = "issue_103_mlsl_terminates"
path = "tests/issue_103_mlsl_terminates.rs"
[[test]]
name = "issue_209_qcqp_socp_status"
path = "tests/issue_209_qcqp_socp_status.rs"
[[test]]
name = "issue_248_jit1_not_unbounded"
path = "tests/issue_248_jit1_not_unbounded.rs"
[[test]]
name = "issue_250_dual_guard_never_worse"
path = "tests/issue_250_dual_guard_never_worse.rs"
[[test]]
name = "issue_257_jit1_node_certificate"
path = "tests/issue_257_jit1_node_certificate.rs"
[[test]]
name = "issue_266_mu_min_scaled_floor"
path = "tests/issue_266_mu_min_scaled_floor.rs"
[[test]]
name = "issue_274_unbounded_not_solved"
path = "tests/issue_274_unbounded_not_solved.rs"
[[test]]
name = "issue_294_dual_sign_regression"
path = "tests/issue_294_dual_sign_regression.rs"
[[test]]
name = "issue_296_bound_multiplier_suffixes"
path = "tests/issue_296_bound_multiplier_suffixes.rs"
[[test]]
name = "issue_313_active_set_rankdef"
path = "tests/issue_313_active_set_rankdef.rs"
[[test]]
name = "issue_314_unbounded_cubic_not_solved"
path = "tests/issue_314_unbounded_cubic_not_solved.rs"
[[test]]
name = "issue_326_active_set_rankdef_triple"
path = "tests/issue_326_active_set_rankdef_triple.rs"
[[test]]
name = "issue_49_external_funcs"
path = "tests/issue_49_external_funcs.rs"
[[test]]
name = "json_report"
path = "tests/json_report.rs"
[[test]]
name = "l1_fallback_no_panic"
path = "tests/l1_fallback_no_panic.rs"
[[test]]
name = "minima_sol_duals"
path = "tests/minima_sol_duals.rs"
[[test]]
name = "nlp_batch"
path = "tests/nlp_batch.rs"
[[test]]
name = "pounce_sens_end_to_end"
path = "tests/pounce_sens_end_to_end.rs"
[[test]]
name = "presolve_dual_length"
path = "tests/presolve_dual_length.rs"
[[test]]
name = "qp_dispatch_end_to_end"
path = "tests/qp_dispatch_end_to_end.rs"
[[test]]
name = "qp_sens_dispatch"
path = "tests/qp_sens_dispatch.rs"
[[test]]
name = "qp_vs_nlp_iterations"
path = "tests/qp_vs_nlp_iterations.rs"
[[test]]
name = "verify_subcommand"
path = "tests/verify_subcommand.rs"
[dependencies.anstream]
version = "0.6"
[dependencies.anstyle]
version = "1"
[dependencies.feral]
version = "0.14.0"
[dependencies.nix]
version = "0.28"
features = ["signal"]
[dependencies.pounce-algorithm]
version = "0.9.0"
[dependencies.pounce-common]
version = "0.9.0"
[dependencies.pounce-convex]
version = "0.9.0"
[dependencies.pounce-feral]
version = "0.9.0"
[dependencies.pounce-hsl]
version = "0.9.0"
optional = true
[dependencies.pounce-linalg]
version = "0.9.0"
[dependencies.pounce-linsol]
version = "0.9.0"
[dependencies.pounce-nl]
version = "0.9.0"
[dependencies.pounce-nlp]
version = "0.9.0"
features = ["serde"]
[dependencies.pounce-observability]
version = "0.9.0"
[dependencies.pounce-presolve]
version = "0.9.0"
[dependencies.pounce-restoration]
version = "0.9.0"
[dependencies.pounce-sensitivity]
version = "0.9.0"
[dependencies.pounce-solve-report]
version = "0.9.0"
[dependencies.pounce-studio-core]
version = "0.9.0"
[dependencies.rand]
version = "0.8"
[dependencies.rand_chacha]
version = "0.3"
[dependencies.rustyline]
version = "14"
features = ["derive"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sobol_burley]
version = "0.5"
[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"