Skip to content

βž• nncg β€” Non-Negative Conjugate Gradients

CI Coverage Python License: MIT CodeQL CodeFactor Rhiza Paper DOI


Quick Links: πŸ“„ Paper β€’ πŸ› Report Bug β€’ πŸ’‘ Request Feature


πŸ“‹ Overview

nncg solves the strictly convex non-negative quadratic program

$$\min_{x \geq 0} \tfrac{1}{2} x^\top A x - b^\top x, \qquad A \succ 0,$$

and its equality-augmented variant with a general linear system $Bx = c$, by wrapping matrix-free conjugate gradients in a primal-dual active-set loop. The working-set toggles are the principal pivots of the linear complementarity problem $\mathrm{LCP}(A, -b)$; guarding the fast block-pivot path with a least-index Bland fallback gives unconditional finite termination at the unique global minimiser β€” no non-degeneracy assumption.

This is the reference implementation of the paper Non-Negative Conjugate Gradients (Schmelzer & Stoll), developed in Jebel-Quant/mean_variance_solvers. The paper's numerical study doubles as this package's test suite: planted-optimum recovery across condition numbers, the equality-augmented solve for $p \in {1, 3, 8}$, CG-vs-exact free-set trajectory agreement (the inexactness lemma), warm-started parameter sweeps, and the adversarial anti-correlated family on which the unguarded batch path provably cycles and the fallback terminates.

The quadratic term enters as a cvx.linalg.SymmetricOperator: wrap an explicit SPD array in DenseOperator. When $A = M^\top M$ is a Gram matrix, pass GramOperator(M, ridge) and the inner solves need only products with $M$ β€” the $n \times n$ matrix is never formed and working memory is $O(n)$.

Each free-block solve is delegated to a pluggable inner solver β€” plain CG (CG), Jacobi- or randomized-NystrΓΆm-preconditioned CG (Jacobi, Nystrom), a NystrΓΆm sketch built once on the full operator and reused across every free block (GlobalNystrom β€” pays off on repeated solves of the same operator), or a direct factorisation (Exact) β€” so you match the inner solve to the operator's structure without touching the outer loop. ActiveSetSolver owns the loop and knows nothing about preconditioning; new inner solvers plug in by implementing a one-method InnerSolver interface.

πŸ“¦ Installation

pip install nncg

πŸš€ Quickstart

The one-call solve_nnqp / solve_nnqp_eq wrappers cover the common case β€” pass a plain SPD array and name the inner solver as a string:

import numpy as np
from nncg import solve_nnqp, solve_nnqp_eq

# a random SPD problem with condition number 1e4
rng = np.random.default_rng(0)
Q, _ = np.linalg.qr(rng.standard_normal((200, 200)))
A = (Q * np.geomspace(1.0, 1e4, 200)) @ Q.T
b = rng.standard_normal(200)

res = solve_nnqp(A, b, inner="cg")  # inner solver: "cg" / "jacobi" / "nystrom" / "global_nystrom" / "exact"
assert res.converged  # stopped on the KKT certificate

# equality-augmented: minimise subject to x >= 0 and B x = c
B = np.ones((1, 200))  # p = 1: the budget 1'x = 1
res_eq = solve_nnqp_eq(A, b, B, np.array([1.0]), inner="jacobi")
assert res_eq.lam.shape == (1,)  # multiplier, via a p-by-p Schur solve

For reuse across a parametric sweep, a matrix-free Gram operator, or a tuned inner solver, build the ActiveSetSolver and its operator directly β€” the wrappers are logic-free shortcuts to exactly this:

from cvx.linalg import DenseOperator, GramOperator
from nncg import ActiveSetSolver, CG, GlobalNystrom, Jacobi, Nystrom, NystromConfig, kkt_violation

op = DenseOperator(A)  # kkt_violation takes a SymmetricOperator too
solver = ActiveSetSolver(inner=CG())  # configure once, reuse across problems
res = solver.solve(op, b)
assert kkt_violation(op, b, res.x) < 1e-6  # zero certifies the global minimiser

# warm-start a parametric sweep: support-stable steps take ONE outer step.
# GlobalNystrom sketches `A` once (on the FIRST solve) and masks that one sketch to
# each free block on every later solve β€” Nystrom would resketch A[F, F] every time.
sweep_solver = ActiveSetSolver(inner=GlobalNystrom(nystrom=NystromConfig(rank=20)))
res2 = sweep_solver.solve(op, b + 1e-4, warm=(res.free, res.x))

# Gram-structured: A = M'M + I only through products with M β€” never formed.
# Swap the inner solver freely β€” here Jacobi to strip the diagonal scaling.
M = rng.standard_normal((50, 200))
res_g = ActiveSetSolver(inner=Jacobi()).solve(GramOperator(M, ridge=1.0), M.T @ np.ones(50))
assert res_g.converged

# tuned inner solver: pass the instance (the string shortcut takes defaults only)
res_n = ActiveSetSolver(inner=Nystrom(nystrom=NystromConfig(rank=20))).solve(op, b)

The package also ships MPRGP (DostΓ‘l & SchΓΆberl) as a first-order alternative for the bound-constrained problem: conjugate-gradient, expansion and proportioning steps under the proportioning test, no factorisation and no active-set combinatorics. It takes the same operator and returns the same kind of certificate, so the two are directly comparable β€” but it carries no finite-termination guarantee and handles bound constraints only (no Bx = c).

from nncg import solve_nnqp_mprgp

res_m = solve_nnqp_mprgp(A, b)  # or MPRGP(...).solve(op, b) for a reusable solver
assert kkt_violation(op, b, res_m.x) < 1e-6  # same certificate as the active-set path

πŸ”¬ The algorithm in one paragraph

Fix a working set of free variables and solve the unconstrained reduced SPD system by CG (matrix-free, $O(\sqrt{\kappa})$ Krylov rate). Push any free variable that returns negative to its bound (primal step); release any bound variable whose reduced gradient is negative (dual step); repeat. Batch exchanges are fast but can cycle; a patience counter falls back to Murty's least-index single pivot, which cannot β€” hence finite termination without any non-degeneracy hypothesis, and the fallback is provably necessary: on anti-correlated designs (the make_adversarial family in the test suite's tests/problems.py) the unguarded batch path revisits a previously seen working set and loops forever.

πŸ“– Citation

If you use this package in academic work, please cite both the software and the paper. The software is archived on Zenodo; the DOI below is the concept DOI, which always resolves to the latest release:

@software{nncg,
  title     = {nncg: Non-Negative Conjugate Gradients},
  author    = {Schmelzer, Thomas and Stoll, Martin},
  doi       = {10.5281/zenodo.22096407},
  url       = {https://doi.org/10.5281/zenodo.22096407},
  publisher = {Zenodo},
}

and the paper:

@techreport{schmelzer2026nncg,
  title       = {Non-Negative Conjugate Gradients},
  author      = {Schmelzer, Thomas and Stoll, Martin},
  year        = {2026},
  institution = {Jebel Quant Research and TU Chemnitz},
  url         = {https://github.com/Jebel-Quant/mean_variance_solvers},
}

βš–οΈ License

MIT β€” see LICENSE.