You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a JuMP/MOI model has a name attribute, which can be accessed by MOI.get(model, MOI.Name()), the function pass_attributes!() in MOI_wrapper.jl fails with "unsupported attribute".
To fix this, I tried to append && attr != MOI.Name() to line 561 of MOI_wrapper.jl, and it works.
Hope the bug get fixed in the incoming update.
The text was updated successfully, but these errors were encountered:
When a JuMP/MOI model has a name attribute, which can be accessed by
MOI.get(model, MOI.Name())
, the functionpass_attributes!()
inMOI_wrapper.jl
fails with "unsupported attribute".To fix this, I tried to append
&& attr != MOI.Name()
to line 561 ofMOI_wrapper.jl
, and it works.Hope the bug get fixed in the incoming update.
The text was updated successfully, but these errors were encountered: