pounce-cli 0.2.0

Command-line driver for POUNCE — solves built-in TNLPs and AMPL .nl files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Library face of `pounce-cli`. Exists so the CLI's argv parser and
//! built-in problems can be unit-tested without invoking `main`.

#![cfg_attr(test, allow(clippy::unwrap_used, clippy::expect_used))]

pub mod builtin;
pub mod cli;
pub mod counting_tnlp;
pub mod nl_hessian_program;
pub mod nl_reader;
pub mod nl_tape;
pub mod nl_writer;
pub mod print;
pub mod sens;
pub mod solve_report;