herculesabqp 0.1.2

A convex box-constrained quadratic programming solver with warm starts and active-set polishing.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! HerculesABQP is a solver for convex box-constrained quadratic programs.
//!
//! The main entry points are:
//! - [`solver::solve_box_qp`] for one-off solves
//! - [`solver::PreparedSolver`] for repeated solves with shared `Q` and `c`
//!
//! The crate also includes matrix wrappers for dense, sparse, and implicit
//! operator-backed quadratic models.

pub mod matrix;
pub mod solver;