-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathSetDotScalingBridge.jl
More file actions
213 lines (175 loc) · 5.68 KB
/
SetDotScalingBridge.jl
File metadata and controls
213 lines (175 loc) · 5.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
# Copyright (c) 2017: Miles Lubin and contributors
# Copyright (c) 2017: Google Inc.
#
# Use of this source code is governed by an MIT-style license that can be found
# in the LICENSE.md file or at https://opensource.org/licenses/MIT.
"""
SetDotScalingBridge{T,S,F,G} <: Bridges.Constraint.AbstractBridge
`SetDotScalingBridge` implements the reformulation from constraints
in `S` to constraints in [`MOI.Scaled{S}`](@ref MOI.Scaled).
## Source node
`SetDotScalingBridge` supports:
* `G` in `S`
## Target node
`SetDotScalingBridge` creates:
* `F` in [`MOI.Scaled{S}`](@ref MOI.Scaled)
"""
struct SetDotScalingBridge{T,S<:MOI.AbstractVectorSet,F,G} <:
SetMapBridge{T,MOI.Scaled{S},S,F,G}
constraint::MOI.ConstraintIndex{F,MOI.Scaled{S}}
end
const SetDotScaling{T,OT<:MOI.ModelLike} =
SingleBridgeOptimizer{SetDotScalingBridge{T},OT}
function concrete_bridge_type(
::Type{<:SetDotScalingBridge{T}},
G::Type{<:MOI.AbstractVectorFunction},
::Type{S},
) where {T,S<:MOI.AbstractVectorSet}
F = MOI.Utilities.promote_operation(
*,
T,
LinearAlgebra.Diagonal{T,Vector{T}},
G,
)
return SetDotScalingBridge{T,S,F,G}
end
function MOI.Bridges.map_set(
::Type{<:SetDotScalingBridge{T,S}},
set::S,
) where {T,S<:MOI.AbstractVectorSet}
return MOI.Scaled(set)
end
function MOI.Bridges.inverse_map_set(
::Type{<:SetDotScalingBridge{T,S}},
set::MOI.Scaled{S},
) where {T,S}
return set.set
end
_length(f::MOI.AbstractVectorFunction) = MOI.output_dimension(f)
_length(f::AbstractVector) = length(f)
function _scale(::Type{T}, ::Type{S}, func) where {T,S}
set = MOI.Utilities.set_with_dimension(S, _length(func))
scale = MOI.Utilities.SetDotScalingVector{T}(set)
return MOI.Utilities.operate(*, T, LinearAlgebra.Diagonal(scale), func)
end
function _inverse_scale(::Type{T}, ::Type{S}, func) where {T,S}
set = MOI.Utilities.set_with_dimension(S, _length(func))
scale = MOI.Utilities.SetDotScalingVector{T}(set)
inv_scale = MOI.Utilities.lazy_map(T, inv, scale)
return MOI.Utilities.operate(*, T, LinearAlgebra.Diagonal(inv_scale), func)
end
function MOI.Bridges.map_function(
::Type{<:SetDotScalingBridge{T,S}},
func,
) where {T,S}
return _scale(T, S, func)
end
function MOI.Bridges.inverse_map_function(
::Type{<:SetDotScalingBridge{T,S}},
func,
) where {T,S}
return _inverse_scale(T, S, func)
end
# Since the map is a diagonal matrix `D`, it is symmetric so one would initially
# expect `adjoint_map_function` to be the same as `map_function`. However, the
# scalar product for the scaled PSD cone is `<x, y>_2 = x'y` but the scalar
# product for the PSD cone additionally scales the offdiagonal entries by `2`
# hence by `D^2` so `<x, y>_1 = x'D^2y`.
# So `<Dx, y>_2 = <x, D^(-1)y>_1` hence the adjoint of `D` is its inverse.
function MOI.Bridges.adjoint_map_function(
::Type{<:SetDotScalingBridge{T,S}},
func,
) where {T,S}
return _inverse_scale(T, S, func)
end
function MOI.Bridges.inverse_adjoint_map_function(
::Type{<:SetDotScalingBridge{T,S}},
func,
) where {T,S}
return _scale(T, S, func)
end
"""
SetDotInverseScalingBridge{T,S,F,G} <: Bridges.Constraint.AbstractBridge
`SetDotInverseScalingBridge` implements the reformulation from constraints
in the `MOI.Scaled{S}` to constraints in the `S`.
## Source node
`SetDotInverseScalingBridge` supports:
* `G` in [`MOI.Scaled{S}`](@ref MOI.Scaled)
## Target node
`SetDotInverseScalingBridge` creates:
* `F` in `S`
"""
struct SetDotInverseScalingBridge{T,S<:MOI.AbstractVectorSet,F,G} <:
SetMapBridge{T,S,MOI.Scaled{S},F,G}
constraint::MOI.ConstraintIndex{F,S}
end
const SetDotInverseScaling{T,OT<:MOI.ModelLike} =
SingleBridgeOptimizer{SetDotInverseScalingBridge{T},OT}
function concrete_bridge_type(
::Type{<:SetDotInverseScalingBridge{T}},
G::Type{<:MOI.AbstractVectorFunction},
::Type{MOI.Scaled{S}},
) where {T,S<:MOI.AbstractVectorSet}
F = MOI.Utilities.promote_operation(
*,
T,
LinearAlgebra.Diagonal{T,Vector{T}},
G,
)
return SetDotInverseScalingBridge{T,S,F,G}
end
function MOI.Bridges.map_set(
::Type{<:SetDotInverseScalingBridge{T,S}},
set::MOI.Scaled{S},
) where {T,S}
return set.set
end
function MOI.Bridges.inverse_map_set(
::Type{<:SetDotInverseScalingBridge{T,S}},
set::S,
) where {T,S<:MOI.AbstractVectorSet}
return MOI.Scaled(set)
end
function MOI.Bridges.map_function(
::Type{<:SetDotInverseScalingBridge{T,S}},
func,
) where {T,S}
return _inverse_scale(T, S, func)
end
function MOI.Bridges.inverse_map_function(
::Type{<:SetDotInverseScalingBridge{T,S}},
func,
) where {T,S}
return _scale(T, S, func)
end
function MOI.Bridges.adjoint_map_function(
::Type{<:SetDotInverseScalingBridge{T,S}},
func,
) where {T,S}
return _scale(T, S, func)
end
function MOI.Bridges.inverse_adjoint_map_function(
::Type{<:SetDotInverseScalingBridge{T,S}},
func,
) where {T,S}
return _inverse_scale(T, S, func)
end
# Since the set type is not defined, the default `MOI.supports_constraint`
# for `SetMapBridge` does not work
function MOI.supports_constraint(
::Type{<:SetDotScalingBridge{T}},
F::Type{<:MOI.AbstractVectorFunction},
S::Type{<:MOI.AbstractVectorSet},
) where {T}
return MOI.Utilities.is_coefficient_type(F, T) && MOI.is_set_dot_scaled(S)
end
function MOI.supports_constraint(
::Type{<:SetDotInverseScalingBridge},
::Type{<:MOI.AbstractVectorFunction},
::Type{MOI.Scaled{S}},
) where {S<:MOI.AbstractVectorSet}
return true
end
# TODO remove in MOI v2
const SymmetricMatrixScalingBridge = SetDotScalingBridge
const SymmetricMatrixInverseScalingBridge = SetDotInverseScalingBridge