We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14f4f7f commit a9eac10Copy full SHA for a9eac10
1 file changed
src/Utilities/universalfallback.jl
@@ -376,7 +376,7 @@ function MOI.get(
376
uf::UniversalFallback,
377
attr::MOI.VariableBridgingCost{S},
378
)::Float64 where {S<:MOI.AbstractScalarSet}
379
- if MOI.supports_added_constrained_variable(uf.model, S)
+ if MOI.supports_add_constrained_variable(uf.model, S)
380
return MOI.get(uf.model, attr)
381
end
382
return 0.0
@@ -386,7 +386,7 @@ function MOI.get(
386
387
388
)::Float64 where {S<:MOI.AbstractVectorSet}
389
- if MOI.supports_added_constrained_variables(uf.model, S)
+ if MOI.supports_add_constrained_variables(uf.model, S)
390
391
392
0 commit comments