hello everyone
I am using Julia, and I am programming some SDP. For this, I use JuMP to prepare the problem, then Hypatia to solve it. But, after the constraints are cleaned (by Hypatia), I would like to get the matrix of all constraints of the solver.
My setup looks like this:
model = Model( Hypatia.Optimizer)
@variable( model , ... )
@constraint( model , ... )
@objective( model , ... )
optimize!(model)
# 1243 of 2511 primal equality constraints are dependent
# get the matrix of the processed constraints
I found this object : backend(model).optimizer.model.optimizer.solver.
but after there are so many variables, I don’t know which variable is the one I am looking for ! I don’t know neither if it is in the list !
Is there a way to retrieve the constraint matrix that Hypatia uses internally?
Thanks a lot
Gustave