We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbc1dfa commit b64dbe1Copy full SHA for b64dbe1
1 file changed
src/FileFormats/MPS/MPS.jl
@@ -1829,4 +1829,13 @@ PrecompileTools.@setup_workload begin
1829
end
1830
1831
1832
+# Originally removed by #2421, but this constant was used by extensions like
1833
+# BilevelJuMP so I'm re-adding to maintain backwards compatibility.
1834
+const SET_TYPES = (
1835
+ (MOI.LessThan{Float64}, "L"),
1836
+ (MOI.GreaterThan{Float64}, "G"),
1837
+ (MOI.EqualTo{Float64}, "E"),
1838
+ (MOI.Interval{Float64}, "L"),
1839
+)
1840
+
1841
0 commit comments