!!! warning This package is not registered and it is under active development. Breaking changes may occur at any time.
MathOptLazy.jl is an experimental meta-solver for problems with lazy constraints.
MathOptLazy.jl is licensed under the MIT License.
If you need help, please ask a question on the JuMP community forum.
If you have a reproducible example of a bug, please open a GitHub issue.
Install MathOptLazy using Pkg.add:
import Pkg
Pkg.add(; url = "https://github.com/jump-dev/MathOptLazy.jl")Use MathOptLazy.jl with JuMP as follows:
using JuMP
import HiGHS
import MathOptLazy
model = Model(() -> MathOptLazy.Optimizer(HiGHS.Optimizer))
@variable(model, x[1:10] >= 0)
@constraint(model, [i in 1:10], x[i] <= 1, MathOptLazy.Lazy())