File tree Expand file tree Collapse file tree 3 files changed +17
-16
lines changed Expand file tree Collapse file tree 3 files changed +17
-16
lines changed Original file line number Diff line number Diff line change @@ -93,11 +93,3 @@ function MOI.Bridges.inverse_adjoint_map_function(
93
93
)
94
94
return MOI. Bridges. map_function (BT, func)
95
95
end
96
-
97
- function MOI. supports (
98
- :: MOI.ModelLike ,
99
- :: MOI.VariablePrimalStart ,
100
- :: Type{<:RSOCtoSOCBridge} ,
101
- )
102
- return false
103
- end
Original file line number Diff line number Diff line change @@ -106,11 +106,3 @@ function MOI.Bridges.inverse_adjoint_map_function(
106
106
)
107
107
return MOI. Bridges. map_function (BT, func)
108
108
end
109
-
110
- function MOI. supports (
111
- :: MOI.ModelLike ,
112
- :: MOI.VariablePrimalStart ,
113
- :: Type{<:SOCtoRSOCBridge} ,
114
- )
115
- return false
116
- end
Original file line number Diff line number Diff line change @@ -102,6 +102,23 @@ function MOI.get(
102
102
return MOI. ConstraintIndex{F,S}[]
103
103
end
104
104
105
+ """
106
+ MOI.supports(
107
+ model::MOI.ModelLike,
108
+ attr::MOI.AbstractVariableAttribute,
109
+ BT::Type{<:AbstractBridge},
110
+ )
111
+
112
+ Return a `Bool` indicating whether `BT` supports setting `attr` to `model`.
113
+ """
114
+ function MOI. supports (
115
+ :: MOI.ModelLike ,
116
+ :: MOI.AbstractVariableAttribute ,
117
+ :: Type{<:AbstractBridge} ,
118
+ )
119
+ return false
120
+ end
121
+
105
122
"""
106
123
MOI.supports(
107
124
model::MOI.ModelLike,
You can’t perform that action at this time.
0 commit comments