-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathtest_TableToMILPBridge.jl
More file actions
66 lines (59 loc) · 1.65 KB
/
test_TableToMILPBridge.jl
File metadata and controls
66 lines (59 loc) · 1.65 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
# 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 TestConstraintTable
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.TableToMILPBridge,
"""
variables: x, y, z
[x, y, z] in Table(Float64[1 1 0; 0 1 1; 1 0 1; 1 1 1])
""",
"""
variables: x, y, z, a1, a2, a3, a4
a1 + a2 + a3 + a4 == 1.0
a1 + a3 + a4 + -1.0 * x == 0.0
a1 + a2 + a4 + -1.0 * y == 0.0
a2 + a3 + a4 + -1.0 * z == 0.0
a1 in ZeroOne()
a2 in ZeroOne()
a3 in ZeroOne()
a4 in ZeroOne()
""",
)
MOI.Bridges.runtests(
MOI.Bridges.Constraint.TableToMILPBridge,
"""
variables: x, y
[x, y, 1] in Table(Float64[1 1 0; 0 1 1; 1 0 1; 1 1 1])
""",
"""
variables: x, y, a1, a2, a3, a4
a1 + a2 + a3 + a4 == 1.0
a1 + a3 + a4 + -1.0 * x == 0.0
a1 + a2 + a4 + -1.0 * y == 0.0
a2 + a3 + a4 == 1.0
a1 in ZeroOne()
a2 in ZeroOne()
a3 in ZeroOne()
a4 in ZeroOne()
""",
)
return
end
end # module
TestConstraintTable.runtests()