7
7
"""
8
8
FeasibilityRelaxation(
9
9
penalties = Dict{MOI.ConstraintIndex,Float64}(),
10
- ) <: MOI.AbstractModelAttribute
10
+ ) <: MOI.AbstractFunctionModification
11
11
12
- A model attribute that, when set, destructively modifies the model in-place to
13
- create a feasibility relaxation.
12
+ A problem modifier that, when passed to [`MOI.modify`](@ref), destructively
13
+ modifies the model in-place to create a feasibility relaxation.
14
14
15
15
!!! warning
16
16
This is a destructive routine that modifies the model in-place. If you don't
17
- want to modify the original model, use `copy_model` to create a copy before
18
- setting this attribute.
17
+ want to modify the original model, use `JuMP. copy_model` to create a copy
18
+ before setting this attribute.
19
19
20
20
## Reformulation
21
21
@@ -25,13 +25,18 @@ term into the objective of ``a \\times (y + z)`` (if minimizing, else ``-a``),
25
25
where `a` is the value in the `penalties` dictionary associated with the
26
26
constraint that is being relaxed. If no value exists, the default is `1.0`.
27
27
28
- The feasibility relaxation is limited to modifying constraint types for which
29
- `MOI.supports(model, ::FeasibilityRelaxation, MOI.ConstraintIndex{F,S})` is
30
- `true`. By default, this is only true for [`MOI.ScalarAffineFunction`](@ref) and
31
- [`MOI.ScalarQuadraticFunction`](@ref) constraints in the linear sets
32
- [`MOI.LessThan`](@ref), [`MOI.GreaterThan`](@ref), [`MOI.EqualTo`](@ref) and
33
- [`MOI.Interval`](@ref). It does not include variable bound or integrality
34
- constraints, because these cannot be modified in-place.
28
+ When `S` is [`MOI.LessThan`](@ref) or [`MOI.GreaterThan`](@ref), we omit `y` or
29
+ `z` respectively as a performance optimization.
30
+
31
+ ## Supported constraint types
32
+
33
+ The feasibility relaxation is currently limited to modifying
34
+ [`MOI.ScalarAffineFunction`](@ref) and [`MOI.ScalarQuadraticFunction`](@ref)
35
+ constraints in the linear sets [`MOI.LessThan`](@ref), [`MOI.GreaterThan`](@ref),
36
+ [`MOI.EqualTo`](@ref) and [`MOI.Interval`](@ref).
37
+
38
+ It does not include variable bound or integrality constraints, because these
39
+ cannot be modified in-place.
35
40
36
41
## Example
37
42
@@ -42,7 +47,7 @@ julia> x = MOI.add_variable(model);
42
47
43
48
julia> c = MOI.add_constraint(model, 1.0 * x, MOI.LessThan(2.0));
44
49
45
- julia> MOI.set (model, MOI.Utilities.FeasibilityRelaxation(Dict(c => 2.0)))
50
+ julia> MOI.modify (model, MOI.Utilities.FeasibilityRelaxation(Dict(c => 2.0)))
46
51
47
52
julia> print(model)
48
53
Minimize ScalarAffineFunction{Float64}:
@@ -57,7 +62,7 @@ VariableIndex-in-GreaterThan{Float64}
57
62
v[2] >= 0.0
58
63
```
59
64
"""
60
- mutable struct FeasibilityRelaxation{T} <: MOI.AbstractModelAttribute
65
+ mutable struct FeasibilityRelaxation{T} <: MOI.AbstractFunctionModification
61
66
penalties:: Dict{MOI.ConstraintIndex,T}
62
67
scale:: T
63
68
function FeasibilityRelaxation (p:: Dict{MOI.ConstraintIndex,T} ) where {T}
@@ -73,7 +78,7 @@ function FeasibilityRelaxation(d::Dict{<:MOI.ConstraintIndex,T}) where {T}
73
78
return FeasibilityRelaxation (convert (Dict{MOI. ConstraintIndex,T}, d))
74
79
end
75
80
76
- function MOI. set (
81
+ function MOI. modify (
77
82
model:: MOI.ModelLike ,
78
83
relax:: FeasibilityRelaxation{T} ,
79
84
) where {T}
@@ -89,45 +94,35 @@ function MOI.set(
89
94
relax. scale = - one (T)
90
95
end
91
96
for (F, S) in MOI. get (model, MOI. ListOfConstraintTypesPresent ())
92
- MOI . set (model, relax, F, S)
97
+ _modify_feasibility_relaxation (model, relax, F, S)
93
98
end
94
99
return
95
100
end
96
101
97
- function MOI . set (
102
+ function _modify_feasibility_relaxation (
98
103
model:: MOI.ModelLike ,
99
104
relax:: FeasibilityRelaxation ,
100
105
:: Type{F} ,
101
106
:: Type{S} ,
102
107
) where {F,S}
103
- if MOI. supports (model, relax, MOI. ConstraintIndex{F,S})
104
- for ci in MOI. get (model, MOI. ListOfConstraintIndices {F,S} ())
105
- MOI. set (model, relax, ci)
106
- end
108
+ for ci in MOI. get (model, MOI. ListOfConstraintIndices {F,S} ())
109
+ MOI. modify (model, ci, relax)
107
110
end
108
111
return
109
112
end
110
113
111
- function MOI. supports (
114
+ function MOI. modify (
112
115
:: MOI.ModelLike ,
116
+ :: MOI.ConstraintIndex ,
113
117
:: FeasibilityRelaxation ,
114
- :: Type{<:MOI.ConstraintIndex{F,<:MOI.AbstractScalarSet}} ,
115
- ) where {T,F<: Union{MOI.ScalarAffineFunction{T},MOI.ScalarQuadraticFunction{T}} }
116
- return true
118
+ )
119
+ return # Silently skip modifying other constraint types.
117
120
end
118
121
119
- function MOI. supports_fallback (
120
- :: MOI.ModelLike ,
121
- :: FeasibilityRelaxation ,
122
- :: Type{MOI.ConstraintIndex{F,S}} ,
123
- ) where {F,S}
124
- return false
125
- end
126
-
127
- function MOI. set (
122
+ function MOI. modify (
128
123
model:: MOI.ModelLike ,
129
- relax:: FeasibilityRelaxation ,
130
124
ci:: MOI.ConstraintIndex{F,<:MOI.AbstractScalarSet} ,
125
+ relax:: FeasibilityRelaxation ,
131
126
) where {T,F<: Union{MOI.ScalarAffineFunction{T},MOI.ScalarQuadraticFunction{T}} }
132
127
y = MOI. add_variable (model)
133
128
z = MOI. add_variable (model)
@@ -143,10 +138,10 @@ function MOI.set(
143
138
return
144
139
end
145
140
146
- function MOI. set (
141
+ function MOI. modify (
147
142
model:: MOI.ModelLike ,
148
- relax:: FeasibilityRelaxation ,
149
143
ci:: MOI.ConstraintIndex{F,MOI.GreaterThan{T}} ,
144
+ relax:: FeasibilityRelaxation ,
150
145
) where {T,F<: Union{MOI.ScalarAffineFunction{T},MOI.ScalarQuadraticFunction{T}} }
151
146
# Performance optimization: we don't need the z relaxation variable.
152
147
y = MOI. add_variable (model)
@@ -159,10 +154,10 @@ function MOI.set(
159
154
return
160
155
end
161
156
162
- function MOI. set (
157
+ function MOI. modify (
163
158
model:: MOI.ModelLike ,
164
- relax:: FeasibilityRelaxation ,
165
159
ci:: MOI.ConstraintIndex{F,MOI.LessThan{T}} ,
160
+ relax:: FeasibilityRelaxation ,
166
161
) where {T,F<: Union{MOI.ScalarAffineFunction{T},MOI.ScalarQuadraticFunction{T}} }
167
162
# Performance optimization: we don't need the y relaxation variable.
168
163
z = MOI. add_variable (model)
0 commit comments