-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathIntegerToZeroOneBridge.jl
More file actions
99 lines (90 loc) · 2.46 KB
/
IntegerToZeroOneBridge.jl
File metadata and controls
99 lines (90 loc) · 2.46 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
# 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 TestConstraintIntegerToZeroOne
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()
MOI.Bridges.runtests(
MOI.Bridges.Constraint.IntegerToZeroOneBridge,
"""
variables: x, z
x in Integer()
x in Interval(1.0, 3.0)
z in ZeroOne()
""",
"""
variables: x, z, y1, y2
y1 in ZeroOne()
y2 in ZeroOne()
x + -1.0 * y1 + -2.0 * y2 == 1.0
x in Interval(1.0, 3.0)
z in ZeroOne()
""",
)
MOI.Bridges.runtests(
MOI.Bridges.Constraint.IntegerToZeroOneBridge,
"""
variables: x
x in Integer()
x in Interval(-1.0, 2.0)
""",
"""
variables: x, y1, y2
y1 in ZeroOne()
y2 in ZeroOne()
x + -1.0 * y1 + -2.0 * y2 == -1.0
x in Interval(-1.0, 2.0)
""",
)
MOI.Bridges.runtests(
MOI.Bridges.Constraint.IntegerToZeroOneBridge,
"""
variables: x
x in Integer()
x in Interval(-2.0, 2.0)
""",
"""
variables: x, y1, y2, y3
y1 in ZeroOne()
y2 in ZeroOne()
y3 in ZeroOne()
x + -1.0 * y1 + -2.0 * y2 + -4.0 * y3 == -2.0
x in Interval(-2.0, 2.0)
""",
)
return
end
function test_finite_domain_error()
inner = MOI.Utilities.Model{Int}()
model = MOI.Bridges.Constraint.IntegerToZeroOne{Int}(inner)
x, _ = MOI.add_constrained_variable(model, MOI.Integer())
@test_throws(
MOI.Bridges.BridgeRequiresFiniteDomainError,
MOI.Bridges.final_touch(model),
)
return
end
function test_final_touch_twice()
inner = MOI.Utilities.Model{Int}()
model = MOI.Bridges.Constraint.IntegerToZeroOne{Int}(inner)
x, _ = MOI.add_constrained_variable(model, MOI.Integer())
MOI.add_constraint(model, x, MOI.Interval(1, 3))
MOI.Bridges.final_touch(model)
MOI.Bridges.final_touch(model)
return
end
end # module
TestConstraintIntegerToZeroOne.runtests()