-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathlinear_program.jl
More file actions
249 lines (235 loc) · 5.59 KB
/
Copy pathlinear_program.jl
File metadata and controls
249 lines (235 loc) · 5.59 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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
# Copyright (c) 2020: Akshay Sharma and contributors
#
# 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 TestLinearProgram
using Test
import DiffOpt
import HiGHS
import MathOptInterface as MOI
import SCS
const ATOL = 1e-2
const RTOL = 1e-2
function runtests()
for name in names(@__MODULE__; all = true)
if startswith("$name", "test_")
@testset "$(name)" begin
getfield(@__MODULE__, name)()
end
end
end
return
end
include(joinpath(@__DIR__, "utils.jl"))
function test_differentiating_LP_checking_gradients_for_non_active_contraints()
# Issue #40 from Gurobi.jl
# min x
# s.t. x >= 0
# x >= 3
nz = 1
qp_test_with_solutions(
HiGHS.Optimizer;
q = ones(nz),
G = -ones(2, nz),
h = [0.0, -3.0],
dzb = ones(nz),
dqf = ones(nz),
# Expected solutions
dGb = [0.0, 3.0],
dhb = [0.0, -1.0],
)
return
end
function test_differentiating_a_simple_LP_with_GreaterThan_constraint()
# this is canonically same as above test
# min x
# s.t. x >= 3
nz = 1
qp_test_with_solutions(
HiGHS.Optimizer;
q = ones(nz),
G = -ones(1, nz),
h = [-3.0],
dzb = ones(nz),
dqf = ones(nz),
# Expected solutions
dGb = [3.0],
dhb = [-1.0],
)
return
end
function test_differentiating_lp()
# refered from - https://en.wikipedia.org/wiki/Simplex_algorithm#Example
# max 2x + 3y + 4z
# s.t. 3x+2y+z <= 10
# 2x+5y+3z <= 15
# x,y,z >= 0
nz = 3
qp_test_with_solutions(
SCS.Optimizer;
q = [-2.0, -3.0, -4.0],
G = [
3.0 2.0 1.0
2.0 5.0 3.0
-1.0 0.0 0.0
0.0 -1.0 0.0
0.0 0.0 -1.0
],
h = [10.0, 15.0, 0.0, 0.0, 0.0],
dzb = ones(nz),
dqf = ones(nz),
# Expected solutions
dqb = zeros(nz),
dGb = [
0.0 0.0 0.0
0.0 0.0 -5/3
0.0 0.0 5/3
0.0 0.0 -10/3
0.0 0.0 0.0
],
dhb = [0.0, 1 / 3, -1 / 3, 2 / 3, 0.0],
)
return
end
function test_differentiating_LP_with_variable_bounds()
# max 2x + 3y + 4z
# s.t. 3x+2y+z <= 10
# 2x+5y+3z <= 15
# x ≤ 3
# 0 ≤ y ≤ 2
# z ≥ 2
# x,y,z >= 0
# variant of previous test with same solution
nz = 3
qp_test_with_solutions(
HiGHS.Optimizer;
q = [-2.0, -3.0, -4.0],
G = [
3.0 2.0 1.0
2.0 5.0 3.0
-1.0 0.0 0.0
0.0 -1.0 0.0
0.0 0.0 -1.0
1.0 0.0 0.0
0.0 1.0 0.0
0.0 0.0 1.0
],
h = [10.0, 15.0, 0.0, 0.0, 0.0, 3.0, 2.0, 6.0],
dzb = ones(nz),
dqf = ones(nz),
# Expected solutions
dqb = zeros(nz),
dGb = [
0.0 0.0 0.0
0.0 0.0 -5/3
0.0 0.0 5/3
0.0 0.0 -10/3
0.0 0.0 0.0
0.0 0.0 0.0
0.0 0.0 0.0
0.0 0.0 0.0
],
dhb = [0.0, 1 / 3, -1 / 3, 2 / 3, 0.0, 0.0, 0.0, 0.0],
)
return
end
function test_differentiating_LP_with_variable_bounds_2()
nz = 3
qp_test_with_solutions(
HiGHS.Optimizer;
q = [-2.0, -3.0, -4.0],
G = [
3.0 2.0 1.0
2.0 5.0 3.0
0.0 -1.0 0.0
0.0 0.0 -1.0
],
h = [10.0, 15.0, 0.0, 0.0],
fix_indices = [1],
fix_values = [0.0],
dzb = ones(nz),
dqf = ones(nz),
# Expected solutions
dqb = zeros(nz),
dGb = [
0.0 0.0 0.0
0.0 0.0 -5/3
0.0 0.0 -10/3
0.0 0.0 0.0
],
dhb = [0.0, 1 / 3, 2 / 3, 0.0],
dAb = [0.0 0.0 -5 / 3],
dbb = [1 / 3],
)
return
end
"""
max 2x + 3y + 4z
s.t. 3x+2y+z <= 10
2x+5y+3z <= 15
x ≤ 3
0 ≤ y ≤ 2
6 ≥ z ≥ -1
x, y, z >= 0
variant of previous test with same solution
"""
function test_differentiating_lp_with_saf_with_le_ge_constraints()
nz = 3
qp_test_with_solutions(
HiGHS.Optimizer;
q = [-2.0, -3.0, -4.0],
G = [
3.0 2.0 1.0
2.0 5.0 3.0
-1.0 0.0 0.0
0.0 -1.0 0.0
0.0 0.0 -1.0
],
h = [10.0, 15.0, 0.0, 0.0, 0.0], #5
ub_indices = [1, 2, 3],
ub_values = [3.0, 2.0, 6.0],
lb_indices = [1],
lb_values = [-1.0],
dzb = ones(nz),
dqb = zeros(nz),
dGb = [
0.0 0.0 0.0
0.0 0.0 -5/3
0.0 0.0 5/3
0.0 0.0 -10/3
0.0 0.0 0.0
0.0 0.0 0.0
0.0 0.0 0.0
0.0 0.0 0.0
0.0 0.0 0.0
],
dhb = [0.0, 1 / 3, -1 / 3, 2 / 3, 0.0, 0.0, 0.0, 0.0, 0.0],
)
return
end
function test_differentiating_lp_with_nonactive_constraints()
# Issue #40 from Gurobi.jl
# min x
# s.t. x >= 0
# x >= 3
qp_test_with_solutions(
HiGHS.Optimizer;
q = [1.0],
G = -ones(2, 1),
h = [0.0, -3.0],
dzb = -ones(1),
dhf = [0.0, 1.0],
# Expected solutions
z = [3.0],
λ = [0.0, 1.0],
dzf = -ones(1),
dλb = zeros(2),
dhb = [0.0, 1.0],
∇zb = zeros(1),
∇λb = [0.0, -1.0],
dλf = zeros(2),
)
return
end
end # module
TestLinearProgram.runtests()