It doesn’t keep the Symmetric
property
import JuMP, Gurobi, LinearAlgebra
model = JuMP.Model(Gurobi.Optimizer)
JuMP.@variable(model, X[1:2, 1:2] >= 0, Symmetric)
JuMP.optimize!(model)
Xt = JuMP.value.(X) # ⚠️ Can this behavior be improved?
# julia> typeof(X)
# LinearAlgebra.Symmetric{JuMP.VariableRef, Matrix{JuMP.VariableRef}}
# julia> typeof(Xt)
# Matrix{Float64} (alias for Array{Float64, 2})
Xt = LinearAlgebra.Symmetric(Xt) # Since JuMP do not support, I have to do this myself
Here is another example
import JuMP, Gurobi, LinearAlgebra
model = JuMP.Model(Gurobi.Optimizer)
JuMP.@variable(model, x); JuMP.@variable(model, y)
trivial_value = 999
JuMP.@expression(model, X, LinearAlgebra.Symmetric([0 x; trivial_value y]))
JuMP.optimize!(model)
Xt = JuMP.value.(X) # ⚠️ Can this behavior be improved?
julia> typeof(X)
LinearAlgebra.Symmetric{JuMP.AffExpr, Matrix{JuMP.AffExpr}}
julia> typeof(Xt)
Matrix{Float64} (alias for Array{Float64, 2})