DAQP.jl is a Julia wrapper for the Quadratic Programming solver DAQP.
DAQP.jl is licensed under the MIT license.
The underlying solver, darnstrom/daqp is licensed under the MIT license.
Install DAQP.jl using the Julia package manager:
import Pkg
Pkg.add("DAQP")
To use DAQP with JuMP, do:
using JuMP, DAQP
model = Model(DAQP.Optimizer)
General information about the solver is available at https://darnstrom.github.io/daqp/, and specifics for the Julia interface are available at https://darnstrom.github.io/daqp/start/julia.