-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathtest_BinPackingToMILPBridge.jl
More file actions
160 lines (148 loc) · 4.63 KB
/
test_BinPackingToMILPBridge.jl
File metadata and controls
160 lines (148 loc) · 4.63 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
# 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 TestConstraintBinPacking
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.BinPackingToMILPBridge,
"""
variables: a, x, y, z
[x, y, z] in BinPacking(3.0, [1.1, 1.9, 2.8])
x in Interval(1.0, 3.0)
y >= 2.0
y <= 3.0
z == 3.0
a in ZeroOne()
""",
"""
variables: a, x, y, z, x1, x2, x3, y2, y3, z3
1.1 * x1 <= 3.0
1.1 * x2 + 1.9 * y2 <= 3.0
1.1 * x3 + 1.9 * y3 + 2.8 * z3 <= 3.0
1.0 * x + -1.0 * x1 + -2.0 * x2 + -3.0 * x3 == 0.0
1.0 * y + -2.0 * y2 + -3.0 * y3 == 0.0
1.0 * z + -3.0 * z3 == 0.0
1.0 * x1 + 1.0 * x2 + 1.0 * x3 == 1.0
1.0 * y2 + 1.0 * y3 == 1.0
1.0 * z3 == 1.0
x1 in ZeroOne()
x2 in ZeroOne()
x3 in ZeroOne()
y2 in ZeroOne()
y3 in ZeroOne()
z3 in ZeroOne()
x in Interval(1.0, 3.0)
y >= 2.0
y <= 3.0
z == 3.0
a in ZeroOne()
""",
)
return
end
function test_runtests_VectorAffineFunction()
MOI.Bridges.runtests(
MOI.Bridges.Constraint.BinPackingToMILPBridge,
"""
variables: x, y, z
[1.0 * x + 1.0, 1.0 * y, z] in BinPacking(3.0, [1.1, 1.9, 2.8])
x in Interval(1.0, 3.0)
y >= 2.0
y <= 3.0
z == 3.0
""",
"""
variables: x, y, z, x2, x3, x4, y2, y3, z3
1.1 * x2 + 1.9 * y2 <= 3.0
1.1 * x3 + 1.9 * y3 + 2.8 * z3 <= 3.0
1.1 * x4 <= 3.0
1.0 * x + -2.0 * x2 + -3.0 * x3 + -4.0 * x4 == -1.0
1.0 * y + -2.0 * y2 + -3.0 * y3 == 0.0
1.0 * z + -3.0 * z3 == 0.0
1.0 * x2 + 1.0 * x3 + 1.0 * x4 == 1.0
1.0 * y2 + 1.0 * y3 == 1.0
1.0 * z3 == 1.0
x2 in ZeroOne()
x3 in ZeroOne()
x4 in ZeroOne()
y2 in ZeroOne()
y3 in ZeroOne()
z3 in ZeroOne()
x in Interval(1.0, 3.0)
y >= 2.0
y <= 3.0
z == 3.0
""",
)
return
end
function test_resolve_with_modified()
inner = MOI.Utilities.Model{Int}()
model = MOI.Bridges.Constraint.BinPackingToMILP{Int}(inner)
x = MOI.add_variables(model, 3)
c = MOI.add_constraint.(model, x, MOI.Interval(1, 2))
f = MOI.VectorOfVariables(x)
MOI.add_constraint(model, f, MOI.BinPacking(3, [1, 2, 3]))
@test MOI.get(inner, MOI.NumberOfVariables()) == 3
MOI.Bridges.final_touch(model)
@test MOI.get(inner, MOI.NumberOfVariables()) == 9
MOI.set(model, MOI.ConstraintSet(), c[2], MOI.Interval(1, 3))
MOI.Bridges.final_touch(model)
@test MOI.get(inner, MOI.NumberOfVariables()) == 10
return
end
function test_runtests_error_variable()
inner = MOI.Utilities.Model{Int}()
model = MOI.Bridges.Constraint.BinPackingToMILP{Int}(inner)
x = MOI.add_variables(model, 3)
f = MOI.VectorOfVariables(x)
c = MOI.add_constraint(model, f, MOI.BinPacking(3, [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.BinPackingToMILP{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.BinPacking(3, [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()
inner = MOI.Utilities.Model{Int}()
model = MOI.Bridges.Constraint.BinPackingToMILP{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.BinPacking(3, [1, 2, 3]))
MOI.delete(model, c)
@test MOI.is_valid(model, x[1])
@test !MOI.is_valid(model, c)
MOI.Bridges.final_touch(model)
return
end
end # module
TestConstraintBinPacking.runtests()