DAQP.jl

DAQP.jl is a Julia wrapper for the Quadratic Programming solver DAQP.

License

DAQP.jl is licensed under the MIT license.

The underlying solver, darnstrom/daqp is licensed under the MIT license.

Installation

Install DAQP.jl using the Julia package manager:

import Pkg
Pkg.add("DAQP")

Use with JuMP

To use DAQP with JuMP, do:

using JuMP, DAQP
model = Model(DAQP.Optimizer)

Documentation

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.