This repository implements the quadratic programming solver for the problem
This is a port of Berwin A. Turlach quadprog to the Julia language, inspired by the Julia implementation GoldfarbIdnaniSolver.jl. The main difference is the data structures of the program and that this version uses caching to avoid allocations for scenarios that require solving many quadratic problems. This is especially advantageous when the underlying matrix is the same across calls.
Here is a simple example, solving the problem corresponding to
n = 3
M = Diagonal(ones(3))
A = spzeros(3, 2)
A[1, 1] = 1
A[2, 2] = 1
b = [1, 1]
cache = initialise(M, A, b)
v = [-1.0, 3.0, 2.0]
v, cache = solve!(v, cache)
Another example corresponding to the projection of mesh parameters with minimum mesh size is available here.