//! POUNCE restoration phase.
//!
//! Port of Ipopt's `Algorithm/IpResto*` files. When the line search
//! cannot accept any step, control switches into the restoration
//! phase, which solves a relaxed feasibility problem (minimize the
//! ℓ1 norm of the constraint violation, plus a regularization
//! against `x_R`). On success it returns to the regular IPM with a
//! new iterate. See `ref/Ipopt/AGENT_REFERENCE/RESTORATION.md`.
//!
//! Phase 9 ships the trait surface and the structural skeletons of
//! each `Resto*` strategy; concrete arithmetic ports incrementally
//! once the regular-phase strategies (Phase 7) are exercising the
//! main loop on real problems.
pub use r#traitRestorationPhase;