How to express an objective with L1-norm in JuMP.jl?

I鈥檓 literally adding this to the documentation right now: [docs] add more tips and tricks for linear programs by odow 路 Pull Request #3144 路 jump-dev/JuMP.jl 路 GitHub :smile:

@variable(model, t)
@constraint(model, [t; x] in MOI.NormOneCone(1 + length(x)))
@objective(model, Min, t) 
1 Like