pub fn solve<const NU: usize, const NV: usize, const NC: usize>(
a: &Mat<NC, NU>,
b: &VecN<NC>,
umin: &VecN<NU>,
umax: &VecN<NU>,
us: &mut VecN<NU>,
ws: &mut [i8; NU],
imax: usize,
) -> SolverStatsExpand description
Active-set solver for the regularised WLS problem.
This is a convenience wrapper around solve_cls that enforces
NC == NU + NV (the augmented system produced by
setup::wls::setup_a /
setup::wls::setup_b).