JuliaSmoothOptimizers / RipQP.jl

MIT License
29 stars 5 forks source link

Size of solution with LLSModels #142

Closed tmigot closed 2 years ago

tmigot commented 2 years ago
using LLSModels, RipQP

A = rand(2,2)
b = rand(2)
nlp = LLSModel(A, b)
stats = ripqp(nlp)
@show length(stats.solution), nlp.meta.nvar

I think we expect the solution to be of the size of the problem.