Skip to main content

pounce_cli/
print.rs

1//! Re-export of the shared Ipopt-style console printers.
2//!
3//! The printer implementations live in [`pounce_solve_report::console`] so
4//! the algorithm's output layer can emit the problem-statistics and
5//! end-of-run summary blocks itself, gated on `print_level` (#206). The CLI
6//! still owns the up-front banner and the convex-QP summary, and re-exports
7//! the shared functions here so existing `print::…` call sites are
8//! unchanged. This module carries no implementation of its own — the single
9//! source of truth is `console`.
10pub use pounce_solve_report::console::*;