herculesabqp 0.1.0

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
12
13
//! 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 plus optional Python bindings.

pub mod matrix;
pub mod solver;

#[cfg(feature = "python")]
mod python;