Skip to main content

pounce_nlp/
tnlp.rs

1//! User-facing `TNLP` trait — port of `Interfaces/IpTNLP.{hpp,cpp}`.
2//!
3//! The Rust shape replaces upstream's two-call `(iRow,jCol,values)`
4//! convention with [`SparsityRequest`], a request enum carrying the
5//! caller-supplied buffers. This is more typesafe (no NULL pointers,
6//! buffer length is type-checked) and matches the eight-method API
7//! upstream documents.
8//!
9//! The `IpoptData` / `IpoptCalculatedQuantities` / `IteratesVector`
10//! parameters of `intermediate_callback` and `finalize_solution` are
11//! introduced as opaque [`IpoptData`] / [`IpoptCq`] types; their full
12//! field set lands in Phase 5.
13//!
14//! Trait objects: `dyn TNLP` is supported. Concrete callers store the
15//! TNLP behind an `Rc<RefCell<dyn TNLP>>` (so eval methods can mutate
16//! internal caches) — `pounce_algorithm::IpoptApplication` handles
17//! wrapping.
18
19use crate::alg_types::SolverReturn;
20use crate::return_codes::AlgorithmMode;
21use pounce_common::types::{Index, Number};
22use std::collections::BTreeMap;
23
24/// Linearity tags. Mirrors `TNLP::LinearityType` upstream.
25#[derive(Debug, Clone, Copy, PartialEq, Eq)]
26pub enum Linearity {
27    Linear,
28    NonLinear,
29}
30
31/// Index style for triplet I/O. Mirrors `TNLP::IndexStyleEnum`.
32/// `Fortran` (1-based) is what MUMPS / HSL want directly; `C`
33/// (0-based) is more natural for Rust user code.
34#[derive(Debug, Clone, Copy, PartialEq, Eq)]
35pub enum IndexStyle {
36    C = 0,
37    Fortran = 1,
38}
39
40/// Problem dimensions returned by [`TNLP::get_nlp_info`].
41#[derive(Debug, Clone, Copy)]
42pub struct NlpInfo {
43    pub n: Index,
44    pub m: Index,
45    pub nnz_jac_g: Index,
46    pub nnz_h_lag: Index,
47    pub index_style: IndexStyle,
48}
49
50/// Variable / constraint metadata buckets, mirroring upstream's
51/// `(StringMetaDataMapType, IntegerMetaDataMapType, NumericMetaDataMapType)`.
52#[derive(Debug, Default, Clone)]
53pub struct MetaData {
54    pub strings: BTreeMap<String, Vec<String>>,
55    pub integers: BTreeMap<String, Vec<Index>>,
56    pub numerics: BTreeMap<String, Vec<Number>>,
57}
58
59/// Conventional [`MetaData::strings`] key for per-index human-readable
60/// names (one entry per variable, or per constraint, in original
61/// problem order). Mirrors upstream Ipopt's `"idx_names"` metadata
62/// key. Carrying names this far lets the debugger report a near-singular
63/// Jacobian row as the `mass_balance` equation instead of "row 3" —
64/// the model-vs-index gap Lee et al. (2024,
65/// <https://doi.org/10.69997/sct.147875>) flag as a key roadblock for
66/// debugging equation-oriented models.
67pub const IDX_NAMES: &str = "idx_names";
68
69/// Bound-data target buffers passed into [`TNLP::get_bounds_info`].
70#[derive(Debug)]
71pub struct BoundsInfo<'a> {
72    pub x_l: &'a mut [Number],
73    pub x_u: &'a mut [Number],
74    pub g_l: &'a mut [Number],
75    pub g_u: &'a mut [Number],
76}
77
78/// Starting-point target buffers passed into [`TNLP::get_starting_point`].
79/// Each `init_*` flag matches upstream — mostly false unless warm-starting.
80#[derive(Debug)]
81pub struct StartingPoint<'a> {
82    pub init_x: bool,
83    pub x: &'a mut [Number],
84    pub init_z: bool,
85    pub z_l: &'a mut [Number],
86    pub z_u: &'a mut [Number],
87    pub init_lambda: bool,
88    pub lambda: &'a mut [Number],
89}
90
91/// Scaling-factor target buffers passed into [`TNLP::get_scaling_parameters`].
92#[derive(Debug)]
93pub struct ScalingRequest<'a> {
94    pub obj_scaling: &'a mut Number,
95    pub use_x_scaling: &'a mut bool,
96    pub x_scaling: &'a mut [Number],
97    pub use_g_scaling: &'a mut bool,
98    pub g_scaling: &'a mut [Number],
99}
100
101/// Mode discriminator for the structure / values calls of
102/// [`TNLP::eval_jac_g`] and [`TNLP::eval_h`]. Replaces upstream's
103/// `iRow != NULL` heuristic.
104#[derive(Debug)]
105pub enum SparsityRequest<'a> {
106    /// First call: fill `irow` and `jcol` with the structure (the
107    /// numbering style is whatever was returned in
108    /// [`NlpInfo::index_style`]). The values array is absent.
109    Structure {
110        irow: &'a mut [Index],
111        jcol: &'a mut [Index],
112    },
113    /// Subsequent calls: fill `values` with the entries of the matrix
114    /// at the current `x` (and, for the Hessian, `lambda`,
115    /// `obj_factor`).
116    Values { values: &'a mut [Number] },
117}
118
119/// Solution as passed to [`TNLP::finalize_solution`].
120#[derive(Debug)]
121pub struct Solution<'a> {
122    pub status: SolverReturn,
123    pub x: &'a [Number],
124    pub z_l: &'a [Number],
125    pub z_u: &'a [Number],
126    pub g: &'a [Number],
127    pub lambda: &'a [Number],
128    pub obj_value: Number,
129}
130
131/// Per-iteration callback payload for [`TNLP::intermediate_callback`].
132#[derive(Debug, Clone, Copy)]
133pub struct IterStats {
134    pub mode: AlgorithmMode,
135    pub iter: Index,
136    pub obj_value: Number,
137    pub inf_pr: Number,
138    pub inf_du: Number,
139    pub mu: Number,
140    pub d_norm: Number,
141    pub regularization_size: Number,
142    pub alpha_du: Number,
143    pub alpha_pr: Number,
144    pub ls_trials: Index,
145}
146
147/// Forward-declared placeholder for `IpoptData`. Phase 5 fills this
148/// in with the full mutable iterate-state structure; for Phase 3 it
149/// is opaque.
150#[derive(Debug, Default)]
151pub struct IpoptData {
152    _private: (),
153}
154
155/// Forward-declared placeholder for `IpoptCalculatedQuantities`.
156/// Phase 5 fills this in.
157#[derive(Debug, Default)]
158pub struct IpoptCq {
159    _private: (),
160}
161
162/// User-facing NLP interface — port of `class TNLP`. Object-safe.
163///
164/// Defaults provided for every method that upstream documents as
165/// "default returns false / does nothing", so simple problems only
166/// override the eight pure-virtual methods.
167pub trait TNLP {
168    /// **Required.** Problem dimensions and triplet index style.
169    fn get_nlp_info(&mut self) -> Option<NlpInfo>;
170
171    /// **Required.** Variable / constraint bounds.
172    fn get_bounds_info(&mut self, b: BoundsInfo<'_>) -> bool;
173
174    /// **Required.** Initial primal (and optionally dual) point.
175    fn get_starting_point(&mut self, sp: StartingPoint<'_>) -> bool;
176
177    /// **Required.** Objective value at `x`.
178    fn eval_f(&mut self, x: &[Number], new_x: bool) -> Option<Number>;
179
180    /// **Required.** Objective gradient at `x` into `grad_f`.
181    fn eval_grad_f(&mut self, x: &[Number], new_x: bool, grad_f: &mut [Number]) -> bool;
182
183    /// **Required.** Constraint values `g(x)`.
184    fn eval_g(&mut self, x: &[Number], new_x: bool, g: &mut [Number]) -> bool;
185
186    /// **Required.** Jacobian of `g`. Sparsity vs. values selected by
187    /// `mode`. `x` and `new_x` are unused on the structure call.
188    fn eval_jac_g(&mut self, x: Option<&[Number]>, new_x: bool, mode: SparsityRequest<'_>) -> bool;
189
190    /// **Required for exact Hessian, optional for L-BFGS.** Hessian
191    /// of the Lagrangian. Default returns false (signals to %Ipopt
192    /// that quasi-Newton must be used).
193    fn eval_h(
194        &mut self,
195        _x: Option<&[Number]>,
196        _new_x: bool,
197        _obj_factor: Number,
198        _lambda: Option<&[Number]>,
199        _new_lambda: bool,
200        _mode: SparsityRequest<'_>,
201    ) -> bool {
202        false
203    }
204
205    /// **Required.** Receives the final iterate after solve.
206    fn finalize_solution(&mut self, sol: Solution<'_>, ip_data: &IpoptData, ip_cq: &IpoptCq);
207
208    // ---- Optional methods (defaults match upstream's "do nothing") ----
209
210    /// Provide variable/constraint metadata (e.g. `idx_names`).
211    /// Default: no metadata.
212    fn get_var_con_metadata(&mut self, _var: &mut MetaData, _con: &mut MetaData) -> bool {
213        false
214    }
215
216    /// User-supplied scaling, used only when
217    /// `nlp_scaling_method=user-scaling`. Default: declines.
218    fn get_scaling_parameters(&mut self, _req: ScalingRequest<'_>) -> bool {
219        false
220    }
221
222    /// Variable linearity tags (used by Bonmin, not by Ipopt).
223    fn get_variables_linearity(&mut self, _types: &mut [Linearity]) -> bool {
224        false
225    }
226
227    /// Per-variable linearity with respect to the **objective only** (a
228    /// pounce extension; upstream has no objective-scoped query).
229    /// `NonLinear` iff the objective's nonlinear part depends on the
230    /// variable; a variable that enters the objective only linearly (or
231    /// not at all) is `Linear` even when it is nonlinear in a
232    /// constraint. Consumed by presolve's Phase-0 objective-coupling
233    /// guard, which must not mistake constraint-only nonlinearity for
234    /// objective coupling. Default: declines (slice untouched).
235    fn get_objective_variables_linearity(&mut self, _types: &mut [Linearity]) -> bool {
236        false
237    }
238
239    /// Constraint linearity tags. Used by adaptive-mu's
240    /// `nlp_scaling_method=equilibration-based`.
241    fn get_constraints_linearity(&mut self, _types: &mut [Linearity]) -> bool {
242        false
243    }
244
245    /// Number of variables that appear nonlinearly. Returning -1
246    /// means "treat all as nonlinear" (the Ipopt default).
247    fn get_number_of_nonlinear_variables(&mut self) -> Index {
248        -1
249    }
250
251    /// List of nonlinear variable indices, in the index style
252    /// returned from [`Self::get_nlp_info`].
253    fn get_list_of_nonlinear_variables(&mut self, _pos_nonlin_vars: &mut [Index]) -> bool {
254        false
255    }
256
257    /// What this model can *prove* about the constancy of its own
258    /// derivatives (gh #588, phase Q6).
259    ///
260    /// This is the auto-detection behind the four upstream hints
261    /// `grad_f_constant` / `hessian_constant` / `jac_c_constant` /
262    /// `jac_d_constant`. Where a model knows its own algebra — an `.nl`
263    /// body the degree-≤2 recognizer reads exactly — it can establish
264    /// the hint without being told, *and* it can establish that the hint
265    /// is false, which is the case upstream honours anyway and pounce
266    /// refuses.
267    ///
268    /// The default declines: everything
269    /// [`DerivativeProof::Unknown`](crate::constant_derivatives::DerivativeProof::Unknown),
270    /// no rows. That is the truthful answer for a TNLP that offers
271    /// callbacks and no algebra — the C interface, the Python bridge,
272    /// both GAMS links — and it is what makes a user's hint on such a
273    /// model still count: `Unknown` means "not established", never
274    /// "varies", and an asserted hint over `Unknown` is honoured on
275    /// trust. See [`crate::constant_derivatives`] for the full table.
276    ///
277    /// A transparent decorator should forward the inner answer only if
278    /// its transformation preserves both directions. Diagonal variable
279    /// scaling does ([`crate::scaling_tnlp::ScalingTnlp`] forwards);
280    /// presolve does not — it changes what the rows *are* — so a
281    /// presolve wrapper must keep the declining default.
282    fn derivative_proofs(&mut self) -> crate::constant_derivatives::DerivativeProofs {
283        crate::constant_derivatives::DerivativeProofs::default()
284    }
285
286    /// Per-iteration intermediate callback. Returning false requests
287    /// early termination with `User_Requested_Stop`.
288    fn intermediate_callback(
289        &mut self,
290        _stats: IterStats,
291        _ip_data: &IpoptData,
292        _ip_cq: &IpoptCq,
293    ) -> bool {
294        true
295    }
296
297    /// Final metadata pass — called just before
298    /// [`Self::finalize_solution`]. Default does nothing.
299    fn finalize_metadata(&mut self, _var: &MetaData, _con: &MetaData) {}
300
301    /// Whether this TNLP is already an explicit generic-presolve wrapper.
302    ///
303    /// This lets the application preserve the public `wrap_with_presolve`
304    /// workflow when `presolve=yes` is also present in its options. Ordinary
305    /// TNLPs and unrelated decorators return `false`.
306    ///
307    /// A transparent decorator around another TNLP should override this and
308    /// forward `inner.borrow().is_presolve_wrapper()`. Otherwise the public
309    /// solve entry point cannot see a presolve wrapper below the decorator and
310    /// may add a second one.
311    fn is_presolve_wrapper(&self) -> bool {
312        false
313    }
314
315    /// The per-variable scaling factors this decorator applies, if it
316    /// is a scaling wrapper (gh#486). Consumers that read the
317    /// algorithm's iterate rather than the `finalize_solution` payload
318    /// see scaled coordinates and need these to undo the substitution.
319    /// A transparent decorator should forward the inner answer.
320    fn scaling_factors(&self) -> Option<Vec<pounce_common::types::Number>> {
321        None
322    }
323
324    /// A *proof* that this problem has no feasible point, if presolve found
325    /// one. `None` (the default) means "not proved" — which is not the same as
326    /// "feasible".
327    ///
328    /// This is the channel presolve previously lacked. Bound propagation and
329    /// FBBT can both establish emptiness of the feasible region **exactly**,
330    /// but with nowhere to report it they discarded the result and let the IPM
331    /// re-derive a strictly weaker numerical verdict — a stationary point of
332    /// the constraint violation, which for a nonconvex problem proves nothing
333    /// globally. Surfacing the proof lets the solver distinguish *"proved
334    /// infeasible"* from *"converged to a locally infeasible point"*.
335    ///
336    /// A transparent decorator around another TNLP should override this and
337    /// forward `inner.borrow().presolve_infeasibility_proof()`, for the same
338    /// reason [`Self::is_presolve_wrapper`] must be forwarded.
339    fn presolve_infeasibility_proof(&self) -> Option<InfeasibilityProof> {
340        None
341    }
342}
343
344/// How presolve established that the feasible region is empty.
345///
346/// Both variants are *proofs*, not heuristics — see the per-variant notes for
347/// why each is sound in floating point. Anything less than a proof must not be
348/// reported here; the numerical "converged to a locally infeasible point"
349/// verdict has its own path.
350#[derive(Debug, Clone, Copy, PartialEq, Eq)]
351pub enum InfeasibilityProof {
352    /// Linear bound propagation drove some variable's bounds past each other
353    /// (`x_l[j] > x_u[j]`). Over a box, propagating a linear row is exact, and
354    /// the crossing must exceed a `1e-12` margin before it counts — so the
355    /// test errs toward *not* declaring infeasibility.
356    BoundPropagation,
357    /// FBBT interval arithmetic emptied the feasible range of constraint
358    /// `witness`. Sound because every interval operation is **outward
359    /// rounded** (one ULP out on each side), so the computed interval always
360    /// contains the true range: an empty computed interval means the true
361    /// range is empty too.
362    IntervalArithmetic {
363        /// Index of the constraint whose range was proved empty.
364        witness: usize,
365    },
366}
367
368#[cfg(test)]
369mod tests {
370    use super::*;
371
372    /// Tiny `min x[0]^2 + x[1]^2  s.t. x[0] + x[1] = 1` problem.
373    /// Used as a smoke test that the trait is object-safe and the
374    /// defaults compile.
375    struct Mini;
376    impl TNLP for Mini {
377        fn get_nlp_info(&mut self) -> Option<NlpInfo> {
378            Some(NlpInfo {
379                n: 2,
380                m: 1,
381                nnz_jac_g: 2,
382                nnz_h_lag: 2,
383                index_style: IndexStyle::C,
384            })
385        }
386        fn get_bounds_info(&mut self, b: BoundsInfo<'_>) -> bool {
387            b.x_l.iter_mut().for_each(|v| *v = -1e19);
388            b.x_u.iter_mut().for_each(|v| *v = 1e19);
389            b.g_l[0] = 1.0;
390            b.g_u[0] = 1.0;
391            true
392        }
393        fn get_starting_point(&mut self, sp: StartingPoint<'_>) -> bool {
394            assert!(sp.init_x);
395            sp.x[0] = 0.5;
396            sp.x[1] = 0.5;
397            true
398        }
399        fn eval_f(&mut self, x: &[Number], _new_x: bool) -> Option<Number> {
400            Some(x[0] * x[0] + x[1] * x[1])
401        }
402        fn eval_grad_f(&mut self, x: &[Number], _new_x: bool, grad_f: &mut [Number]) -> bool {
403            grad_f[0] = 2.0 * x[0];
404            grad_f[1] = 2.0 * x[1];
405            true
406        }
407        fn eval_g(&mut self, x: &[Number], _new_x: bool, g: &mut [Number]) -> bool {
408            g[0] = x[0] + x[1];
409            true
410        }
411        fn eval_jac_g(
412            &mut self,
413            _x: Option<&[Number]>,
414            _new_x: bool,
415            mode: SparsityRequest<'_>,
416        ) -> bool {
417            match mode {
418                SparsityRequest::Structure { irow, jcol } => {
419                    irow.copy_from_slice(&[0, 0]);
420                    jcol.copy_from_slice(&[0, 1]);
421                }
422                SparsityRequest::Values { values } => {
423                    values.copy_from_slice(&[1.0, 1.0]);
424                }
425            }
426            true
427        }
428        fn finalize_solution(&mut self, _sol: Solution<'_>, _d: &IpoptData, _q: &IpoptCq) {}
429    }
430
431    #[test]
432    fn tnlp_is_object_safe() {
433        // The trait must be usable behind `dyn`; this also exercises
434        // every default-impl method to make sure they compile.
435        let mut t: Box<dyn TNLP> = Box::new(Mini);
436        let info = t.get_nlp_info().expect("get_nlp_info");
437        assert_eq!(info.n, 2);
438        assert_eq!(info.m, 1);
439        assert_eq!(info.index_style, IndexStyle::C);
440
441        let mut x_l = [0.0; 2];
442        let mut x_u = [0.0; 2];
443        let mut g_l = [0.0; 1];
444        let mut g_u = [0.0; 1];
445        assert!(t.get_bounds_info(BoundsInfo {
446            x_l: &mut x_l,
447            x_u: &mut x_u,
448            g_l: &mut g_l,
449            g_u: &mut g_u
450        }));
451        assert_eq!(g_l[0], 1.0);
452
453        let mut grad = [0.0; 2];
454        assert!(t.eval_grad_f(&[3.0, 4.0], true, &mut grad));
455        assert_eq!(grad, [6.0, 8.0]);
456
457        // exact-Hessian default returns false
458        let mut tmp_v = [0.0; 0];
459        assert!(!t.eval_h(
460            None,
461            false,
462            1.0,
463            None,
464            false,
465            SparsityRequest::Values { values: &mut tmp_v }
466        ));
467
468        // Quasi-Newton info default
469        assert_eq!(t.get_number_of_nonlinear_variables(), -1);
470    }
471
472    #[test]
473    fn sparsity_request_round_trip() {
474        let mut t = Mini;
475        let mut irow = [0; 2];
476        let mut jcol = [0; 2];
477        assert!(t.eval_jac_g(
478            None,
479            false,
480            SparsityRequest::Structure {
481                irow: &mut irow,
482                jcol: &mut jcol
483            }
484        ));
485        assert_eq!(irow, [0, 0]);
486        assert_eq!(jcol, [0, 1]);
487
488        let mut vals = [0.0; 2];
489        assert!(t.eval_jac_g(
490            Some(&[1.0, 2.0]),
491            true,
492            SparsityRequest::Values { values: &mut vals }
493        ));
494        assert_eq!(vals, [1.0, 1.0]);
495    }
496}