no JuMP.name for Ps, to avoid warnings

This commit is contained in:
kalmar 2017-06-09 11:56:47 +02:00
parent d64ba34407
commit 01fbd037c3
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ function init_model(Uπs)
for k in 1:l
s = size(Uπs[k],2)
P[k] = JuMP.@variable(m, P[k][i=1:s, j=1:s])
P[k] = JuMP.@variable(m, [i=1:s, j=1:s])
JuMP.@SDconstraint(m, P[k] >= 0.0)
end