-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathtest_SOS1ToMILPBridge.jl
More file actions
169 lines (154 loc) · 4.57 KB
/
test_SOS1ToMILPBridge.jl
File metadata and controls
169 lines (154 loc) · 4.57 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
# 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.
module TestConstraintSOS1ToMILP
using Test
import MathOptInterface as MOI
function runtests()
for name in names(@__MODULE__; all = true)
if startswith("$(name)", "test_")
@testset "$(name)" begin
getfield(@__MODULE__, name)()
end
end
end
return
end
function test_runtests_VectorOfVariables()
MOI.Bridges.runtests(
MOI.Bridges.Constraint.SOS1ToMILPBridge,
"""
variables: x, y
[x, y] in SOS1([1.0, 2.0])
x in Interval(0.0, 2.0)
y >= -1.0
y <= 3.0
""",
"""
variables: x, y, z1, z2
1.0 * z1 + 1.0 * z2 == 1.0
x in Interval(0.0, 2.0)
y >= -1.0
y <= 3.0
-1.0 * x <= 0.0
1.0 * x + -2.0 * z1 <= 0.0
-1.0 * y + -1.0 * z2 <= 0.0
1.0 * y + -3.0 * z2 <= 0.0
z1 in ZeroOne()
z2 in ZeroOne()
""",
)
return
end
function test_runtests_VectorAffineFunction()
MOI.Bridges.runtests(
MOI.Bridges.Constraint.SOS1ToMILPBridge,
"""
variables: x, y
[1.0 * x + 2.0, y] in SOS1([1.0, 2.0])
x in ZeroOne()
y in ZeroOne()
""",
"""
variables: x, y, z1, z2
1.0 * z1 + 1.0 * z2 == 1.0
-1.0 * x + 2.0 * z1 <= 2.0
1.0 * x + -3.0 * z1 <= -2.0
-1.0 * y <= 0.0
1.0 * y + -1.0 * z2 <= 0.0
x in ZeroOne()
y in ZeroOne()
z1 in ZeroOne()
z2 in ZeroOne()
""",
)
return
end
function test_resolve_with_modified()
inner = MOI.Utilities.Model{Int}()
model = MOI.Bridges.Constraint.SOS1ToMILP{Int}(inner)
x = MOI.add_variables(model, 3)
c = MOI.add_constraint.(model, x, MOI.Interval(0, 2))
MOI.add_constraint(model, MOI.VectorOfVariables(x), MOI.SOS1([1, 2, 3]))
@test MOI.get(inner, MOI.NumberOfVariables()) == 3
MOI.Bridges.final_touch(model)
@test MOI.get(inner, MOI.NumberOfVariables()) == 6
MOI.set(model, MOI.ConstraintSet(), c[3], MOI.Interval(0, 1))
MOI.Bridges.final_touch(model)
@test MOI.get(inner, MOI.NumberOfVariables()) == 6
return
end
function test_runtests_error_variable()
inner = MOI.Utilities.Model{Int}()
model = MOI.Bridges.Constraint.SOS1ToMILP{Int}(inner)
x = MOI.add_variables(model, 3)
c = MOI.add_constraint(model, MOI.VectorOfVariables(x), MOI.SOS1([1, 2, 3]))
BT = typeof(model.map[c])
@test_throws(
MOI.Bridges.BridgeRequiresFiniteDomainError{BT,MOI.VariableIndex},
MOI.Bridges.final_touch(model),
)
return
end
function test_runtests_error_affine()
inner = MOI.Utilities.Model{Int}()
model = MOI.Bridges.Constraint.SOS1ToMILP{Int}(inner)
x = MOI.add_variables(model, 2)
f = MOI.Utilities.operate(vcat, Int, 2, 1 * x[1], x[2])
c = MOI.add_constraint(model, f, MOI.SOS1([1, 2, 3]))
BT = typeof(model.map[c])
F = MOI.ScalarAffineFunction{Int}
@test_throws(
MOI.Bridges.BridgeRequiresFiniteDomainError{BT,F},
MOI.Bridges.final_touch(model),
)
return
end
function test_delete_before_final_touch()
model = MOI.Bridges.Constraint.SOS1ToMILP{Float64}(
MOI.Utilities.Model{Float64}(),
)
x = MOI.add_variables(model, 2)
c = MOI.add_constraint(
model,
MOI.VectorOfVariables(x),
MOI.SOS1([1.0, 2.0]),
)
MOI.delete(model, c)
@test !MOI.is_valid(model, c)
MOI.Bridges.final_touch(model)
return
end
MOI.Utilities.@model(
Model2722,
(),
(MOI.EqualTo,),
(MOI.Zeros,),
(MOI.SOS1,),
(),
(MOI.ScalarAffineFunction,),
(MOI.VectorOfVariables,),
(MOI.VectorAffineFunction,),
)
function MOI.supports_constraint(
::Model2722{T},
::Type{MOI.VectorAffineFunction{T}},
::Type{MOI.SOS1{T}},
) where {T}
return false
end
function test_bridge_does_not_apply_if_vector_slack_exists()
inner = Model2722{Float64}()
model = MOI.Bridges.full_bridge_optimizer(inner, Float64)
x = MOI.add_variables(model, 3)
f = MOI.Utilities.vectorize(1.0 .* x)
c = MOI.add_constraint(model, f, MOI.SOS1([1.0, 2.0, 3.0]))
@test model.constraint_map[c] isa MOI.Bridges.Constraint.VectorSlackBridge
F, S = MOI.VectorOfVariables, MOI.SOS1{Float64}
@test (F, S) in MOI.get(inner, MOI.ListOfConstraintTypesPresent())
return
end
end # module
TestConstraintSOS1ToMILP.runtests()