We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c9894c commit 2f8a1ccCopy full SHA for 2f8a1cc
src/Bridges/Bridges.jl
@@ -136,7 +136,9 @@ end
136
"""
137
struct ListOfNonstandardBridges{T} <: MOI.AbstractOptimizerAttribute end
138
139
-MOI.attribute_value_type(::ListOfNonstandardBridges) = Vector{Type}
+# This should be Vector{Type}, but MOI <=v1.37.0 had a bug that meant this was
140
+# not implemented. To maintain backwards compatibility, we make this `Vector`.
141
+MOI.attribute_value_type(::ListOfNonstandardBridges) = Vector
142
143
MOI.is_copyable(::ListOfNonstandardBridges) = false
144
0 commit comments