1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
//! Sparse parametric active-set quadratic programming solver for
//! POUNCE.
//!
//! # Algorithm
//!
//! The solver family is **sparse Schur-complement parametric
//! active-set** — the qpOASES lineage extended to sparse Hessian and
//! Jacobian, after Kirches 2011 (*Fast Numerical Methods for
//! Mixed-Integer Nonlinear Model-Predictive Control*) and Janka,
//! Kirches, Sager, Schlöder 2016 (*Math. Prog. Comp.* **8**). It is
//! the only QP family in the literature combining sparse storage,
//! indefinite-Hessian handling, and true parametric warm starting
//! across solves — the trio required for the SQP / MPC / parametric-
//! continuation workloads pounce targets.
//!
//! See [`docs/research/active-set-sqp-warm-start.md`] (§4.2) for the
//! literature pinning and [§5](`docs/research/active-set-sqp-warm-start.md`)
//! for the type-level design this module realizes.
//!
//! # Status
//!
//! Implemented and tested. The solver internals — Schur-complement
//! factor maintenance ([`schur`]), GMSW EXPAND anti-cycling
//! ([`working_set`]), l1-elastic phase-1 ([`elastic`]), parametric
//! homotopy ([`ParametricActiveSetSolver::solve_parametric`]), and
//! inertia control ([`HessianInertia`]) — are live, exercised by the
//! crate's unit tests and the published-optimum fixtures under
//! `tests/` (Maros-Mészáros-style closed-form KKT optima). The active
//! set engine is reached from Python through the SQP path
//! (`Problem(algorithm = "active-set-sqp")`, with `working_set`
//! warm-starting) and through `QpSensitivity` (parametric `dx/dp`), and
//! from the CLI via `solver_selection = "qp-active-set"` on an LP /
//! convex-QP `.nl` (routed through the SQP driver, which solves its step
//! QPs here). Still outstanding: cross-checking the full 138-problem
//! Maros-Mészáros `.qps` set against external oracles (qpOASES / OSQP),
//! which is gated on the `.qps` distribution and FFI.
//!
//! [`docs/research/active-set-sqp-warm-start.md`]: ../../../../docs/research/active-set-sqp-warm-start.md
pub use ElasticReformulation;
pub use ;
pub use LinearSolver;
pub use ;
pub use ;
pub use ;
pub use ;
pub use ;
pub use ;