forked from jump-dev/JuMP.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_complement.jl
149 lines (133 loc) · 3.9 KB
/
test_complement.jl
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
# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
module TestComplement
using JuMP
using Test
include(joinpath(@__DIR__, "utilities.jl"))
function test_scalar_complements()
model = Model()
@variable(model, x >= 0)
@constraint(model, c, complements(2x - 1, x))
obj = constraint_object(c)
@test obj.func == [2x - 1, x]
@test obj.set == MOI.Complements(2)
return
end
function test_scalar_perp()
model = Model()
@variable(model, x >= 0)
@variable(model, y >= 0)
@constraint(model, c, x ⟂ y)
obj = constraint_object(c)
@test obj.func == [x, y]
@test obj.set == MOI.Complements(2)
return
end
function test_scalar_error_x_F()
model = Model()
@variable(model, x >= 0)
@test_throws_strip(
ErrorException(
"In `@constraint(model, x ⟂ 2x - 1)`: second term must be a " *
"variable.",
),
@constraint(model, x ⟂ 2x - 1)
)
return
end
function test_scalar_error_F_F()
model = Model()
@variable(model, x >= 0)
@test_throws_strip(
ErrorException(
"In `@constraint(model, x + 1 ⟂ 2x - 1)`: second term must " *
"be a variable.",
),
@constraint(model, x + 1 ⟂ 2x - 1)
)
return
end
function test_vector_complements()
model = Model()
@variable(model, x[1:2] >= 0)
@constraint(model, c, complements(2x .- 1, x))
obj = constraint_object(c)
@test obj.func == [2x .- 1; x]
@test obj.set == MOI.Complements(4)
return
end
function test_vector_perp()
model = Model()
@variable(model, x[1:2] >= 0)
@variable(model, y[1:2] >= 0)
@constraint(model, c, x ⟂ y)
obj = constraint_object(c)
@test obj.func == [x; y]
@test obj.set == MOI.Complements(4)
return
end
function test_vector_error_length_mismatch()
model = Model()
@variable(model, x[1:2] >= 0)
@test_throws_strip(
ErrorException(
"In `@constraint(model, x ⟂ [x[1]])`: size of mapping does " *
"not match size of variables: (2,) != (1,).",
),
@constraint(model, x ⟂ [x[1]])
)
return
end
function test_vector_error_x_F()
model = Model()
@variable(model, x[1:2] >= 0)
@test_throws_strip(
ErrorException(
"In `@constraint(model, x ⟂ 2x .- 1)`: second term must be an " *
"array of variables.",
),
@constraint(model, x ⟂ 2x .- 1)
)
end
function test_vector_error_F_F()
model = Model()
@variable(model, x[1:2] >= 0)
@test_throws_strip(
ErrorException(
"In `@constraint(model, x .+ 1 ⟂ 2x .- 1)`: second term must " *
"be an array of variables.",
),
@constraint(model, x .+ 1 ⟂ 2x .- 1)
)
return
end
function test_sparse_complements()
model = Model()
@variable(model, x[i = 1:3; isodd(i)] >= 0)
@constraint(model, c, complements(2x .- 1, x))
obj = constraint_object(c)
@test obj.func == [2x[3] - 1, 2x[1] - 1, x[3], x[1]] ||
obj.func == [2x[1] - 1, 2x[3] - 1, x[1], x[3]]
@test obj.set == MOI.Complements(4)
return
end
function test_sparse_perp()
model = Model()
@variable(model, x[i = 1:3; isodd(i)] >= 0)
@constraint(model, c, 2x .- 1 ⟂ x)
obj = constraint_object(c)
@test obj.func == [2x[3] - 1, 2x[1] - 1, x[3], x[1]] ||
obj.func == [2x[1] - 1, 2x[3] - 1, x[1], x[3]]
@test obj.set == MOI.Complements(4)
return
end
function test_sparse_key_mismatch()
model = Model()
@variable(model, x[i = 1:3; isodd(i)] >= 0)
@variable(model, y[i = 3:5; isodd(i)] >= 0)
@test_throws(ErrorException, @constraint(model, 2x .- 1 ⟂ y))
return
end
end # module