-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathattributes.jl
More file actions
436 lines (396 loc) · 13.2 KB
/
attributes.jl
File metadata and controls
436 lines (396 loc) · 13.2 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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
# 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 TestAttributes
using Test
import MathOptInterface as MOI
include("dummy.jl")
function runtests()
for name in names(@__MODULE__; all = true)
if startswith("$name", "test_")
@testset "$(name)" begin
getfield(@__MODULE__, name)()
end
end
end
end
function test_attributes_is_set_by_optimize()
@test MOI.is_set_by_optimize(MOI.TerminationStatus())
@test !MOI.is_set_by_optimize(MOI.ConstraintSet())
@test !MOI.is_set_by_optimize(MOI.ObjectiveSense())
@test MOI.is_set_by_optimize(MOI.CallbackNodeStatus(1))
end
function test_attributes_is_copyable()
@test !MOI.is_copyable(MOI.TerminationStatus())
@test !MOI.is_copyable(MOI.ConstraintSet())
@test MOI.is_copyable(MOI.ObjectiveSense())
end
function test_attributes_supports()
model = DummyModel()
@test_throws ArgumentError MOI.supports(model, MOI.TerminationStatus())
@test_throws ArgumentError begin
MOI.supports(
model,
MOI.ConstraintSet(),
MOI.ConstraintIndex{MOI.VariableIndex,MOI.EqualTo{Float64}},
)
end
@test MOI.supports(model, MOI.ObjectiveSense())
end
function test_attributes_set_vector()
attr = MOI.VariablePrimalStart()
err = DimensionMismatch(
"Number of indices (1) does not match the " *
"number of values (2) set to `$attr`.",
)
model = DummyModel()
x = MOI.VariableIndex(1)
@test_throws err MOI.set(model, MOI.VariablePrimalStart(), [x], ones(2))
end
function test_attributes_integration_compute_conflict_1()
optimizer = MOI.Utilities.MockOptimizer(MOI.Utilities.Model{Float64}())
model = MOI.Utilities.CachingOptimizer(
MOI.Utilities.Model{Float64}(),
MOI.Bridges.full_bridge_optimizer(optimizer, Float64),
)
x = MOI.add_variable(model)
c1 = MOI.add_constraint(model, x, MOI.LessThan(0.0))
c2 = MOI.add_constraint(model, x, MOI.GreaterThan(1.0))
MOI.optimize!(model)
@test MOI.get(optimizer, MOI.ConflictStatus()) ==
MOI.COMPUTE_CONFLICT_NOT_CALLED
MOI.set(optimizer, MOI.ConflictStatus(), MOI.CONFLICT_FOUND)
MOI.set(optimizer, MOI.ConflictCount(), 1)
MOI.set(
optimizer,
MOI.ConstraintConflictStatus(),
MOI.get(
optimizer,
MOI.ListOfConstraintIndices{
MOI.VariableIndex,
MOI.LessThan{Float64},
}(),
)[1],
MOI.NOT_IN_CONFLICT,
)
MOI.set(
optimizer,
MOI.ConstraintConflictStatus(),
MOI.get(
optimizer,
MOI.ListOfConstraintIndices{
MOI.VariableIndex,
MOI.GreaterThan{Float64},
}(),
)[1],
MOI.IN_CONFLICT,
)
MOI.compute_conflict!(model)
@test MOI.get(model, MOI.ConflictStatus()) == MOI.CONFLICT_FOUND
@test MOI.get(model, MOI.ConflictCount()) == 1
@test MOI.get(model, MOI.ConstraintConflictStatus(), c1) ==
MOI.NOT_IN_CONFLICT
@test MOI.get(model, MOI.ConstraintConflictStatus(), c2) == MOI.IN_CONFLICT
@test MOI.get(model, MOI.ConstraintConflictStatus(1), c1) ==
MOI.NOT_IN_CONFLICT
@test MOI.get(model, MOI.ConstraintConflictStatus(1), c2) == MOI.IN_CONFLICT
@test_throws MOI.ConflictIndexBoundsError MOI.get(
model,
MOI.ConstraintConflictStatus(2),
c1,
)
@test_throws MOI.ConflictIndexBoundsError MOI.get(
model,
MOI.ConstraintConflictStatus(2),
c2,
)
end
MOI.Utilities.@model(
OnlyScalarConstraints,
(),
(MOI.GreaterThan, MOI.LessThan),
(),
(),
(),
(MOI.ScalarAffineFunction,),
(),
()
)
function test_attributes_integration_compute_conflict_2()
optimizer = MOI.Utilities.MockOptimizer(OnlyScalarConstraints{Float64}())
model = MOI.Bridges.full_bridge_optimizer(optimizer, Float64)
x = MOI.add_variable(model)
c = MOI.add_constraint(
model,
MOI.ScalarAffineFunction([MOI.ScalarAffineTerm(1.0, x)], 0.0),
MOI.Interval(0.0, 1.0),
)
MOI.optimize!(model)
@test MOI.get(optimizer, MOI.ConflictStatus()) ==
MOI.COMPUTE_CONFLICT_NOT_CALLED
MOI.set(optimizer, MOI.ConflictStatus(), MOI.CONFLICT_FOUND)
MOI.set(optimizer, MOI.ConflictCount(), 1)
MOI.compute_conflict!(model)
@test MOI.get(model, MOI.ConflictStatus()) == MOI.CONFLICT_FOUND
@test MOI.get(model, MOI.ConflictCount()) == 1
return
end
struct _NoConstraintName <: MOI.AbstractOptimizer end
function test_no_constraint_name()
model = _NoConstraintName()
@test_throws(
MOI.VariableIndexConstraintNameError(),
MOI.supports(
model,
MOI.ConstraintName(),
MOI.ConstraintIndex{MOI.VariableIndex,MOI.ZeroOne},
),
)
@test_throws(
MOI.VariableIndexConstraintNameError(),
MOI.set(
model,
MOI.ConstraintName(),
MOI.ConstraintIndex{MOI.VariableIndex,MOI.ZeroOne}(1),
"name",
),
)
end
function test_get_fallback()
model = DummyModelWithAdd()
x = MOI.add_variable(model)
c = MOI.add_constraint(model, x, MOI.EqualTo(0.0))
@test_throws(
MOI.GetAttributeNotAllowed(
MOI.SolveTimeSec(),
"$(typeof(model)) does not support getting the attribute " *
"$(MOI.SolveTimeSec()).",
),
MOI.get(model, MOI.SolveTimeSec()),
)
output = Ref{Cdouble}()
@test_throws(
MOI.GetAttributeNotAllowed(
MOI.SolveTimeSec(),
"$(typeof(model)) does not support getting the attribute " *
"$(MOI.SolveTimeSec()).",
),
MOI.get!(output, model, MOI.SolveTimeSec()),
)
@test_throws(
MOI.GetAttributeNotAllowed(
MOI.VariablePrimal(),
"$(typeof(model)) does not support getting the attribute " *
"$(MOI.VariablePrimal()).",
),
MOI.get(model, MOI.VariablePrimal(), x),
)
@test_throws(
MOI.GetAttributeNotAllowed(
MOI.ConstraintPrimal(),
"$(typeof(model)) does not support getting the attribute " *
"$(MOI.ConstraintPrimal()).",
),
MOI.get(model, MOI.ConstraintPrimal(), c),
)
@test_throws(
MOI.GetAttributeNotAllowed(
MOI.VariablePrimal(),
"Unable to get attribute $(MOI.VariablePrimal()): invalid " *
"arguments $((c,)).",
),
MOI.get(model, MOI.VariablePrimal(), c),
)
return
end
function test_ConstraintBasisStatus_fallback()
model = DummyModelWithAdd()
c = MOI.ConstraintIndex{MOI.VariableIndex,MOI.EqualTo{Float64}}(1)
@test_throws(
ErrorException(
"Querying the basis status of a `VariableIndex` constraint is " *
"not supported. Use [`VariableBasisStatus`](@ref) instead.",
),
MOI.get(model, MOI.ConstraintBasisStatus(), c),
)
end
function test_UnsupportedSubmittable()
model = DummyModelWithAdd()
sub = MOI.LazyConstraint{Int}(1)
@test_throws(
MOI.UnsupportedSubmittable(
sub,
"submit(::$(typeof(model)), ::$(typeof(sub))) is not supported.",
),
MOI.submit(model, sub, 1),
)
end
function test_attribute_value_type()
@test MOI.attribute_value_type(MOI.CallbackNodeStatus(1)) ==
MOI.CallbackNodeStatusCode
@test MOI.attribute_value_type(MOI.LazyConstraintCallback()) == Function
@test MOI.attribute_value_type(MOI.RelativeGap()) == Float64
@test MOI.attribute_value_type(MOI.SimplexIterations()) == Int64
@test MOI.attribute_value_type(MOI.BarrierIterations()) == Int64
@test MOI.attribute_value_type(MOI.NodeCount()) == Int64
@test MOI.attribute_value_type(
MOI.ConstraintBridgingCost{MOI.VariableIndex,MOI.ZeroOne}(),
) == Float64
@test MOI.attribute_value_type(MOI.VariableBridgingCost{MOI.ZeroOne}()) ==
Float64
end
MOI.Utilities.@model(
_Model1777,
(),
(MOI.LessThan,),
(MOI.Nonnegatives,),
(),
(),
(MOI.ScalarAffineFunction,),
(MOI.VectorOfVariables,),
()
)
function MOI.supports_constraint(
::_Model1777,
::Type{MOI.VectorOfVariables},
::Type{MOI.Reals},
)
return false
end
function MOI.supports_add_constrained_variables(
::_Model1777,
::Type{MOI.Nonnegatives},
)
return true
end
MOI.supports_add_constrained_variables(::_Model1777, ::Type{MOI.Reals}) = false
function MOI.get(
model::_Model1777,
attr::MOI.ConstraintFunction,
ci::MOI.ConstraintIndex,
)
return MOI.get_fallback(model, attr, ci)
end
function test_issue_1777()
model = MOI.Utilities.CachingOptimizer(
MOI.Utilities.UniversalFallback(MOI.Utilities.Model{Float64}()),
MOI.Bridges.full_bridge_optimizer(_Model1777{Float64}(), Float64),
)
x = MOI.add_variable(model)
c = MOI.add_constraint(model, 1.0 * x, MOI.LessThan(1.0))
MOI.Utilities.attach_optimizer(model)
MOI.set(model, MOI.ConstraintSet(), c, MOI.LessThan(2.0))
@test MOI.get(model, MOI.ConstraintSet(), c) == MOI.LessThan(2.0)
@test MOI.Utilities.state(model) == MOI.Utilities.EMPTY_OPTIMIZER
return
end
function test_scalar_nonlinear_function_ConstraintName()
model = MOI.Utilities.Model{Float64}()
x = MOI.add_variable(model)
f = MOI.ScalarNonlinearFunction(
:+,
Any[x, MOI.ScalarNonlinearFunction(:sin, Any[x])],
)
c = MOI.add_constraint(model, f, MOI.EqualTo(0.0))
MOI.set(model, MOI.ConstraintName(), c, "c")
@test MOI.get(model, MOI.ConstraintName(), c) == "c"
return
end
function test_scalar_nonlinear_function_set_objective()
model = MOI.Utilities.Model{Float64}()
x = MOI.add_variable(model)
f = MOI.ScalarNonlinearFunction(
:+,
Any[x, MOI.ScalarNonlinearFunction(:sin, Any[x])],
)
MOI.set(model, MOI.ObjectiveSense(), MOI.MIN_SENSE)
attr = MOI.ObjectiveFunction{typeof(f)}()
MOI.set(model, attr, f)
@test isapprox(MOI.get(model, attr), f)
return
end
function test_attributes_AutomaticDifferentiationBackend()
@test MOI.attribute_value_type(MOI.AutomaticDifferentiationBackend()) ==
MOI.Nonlinear.AbstractAutomaticDifferentiation
return
end
function test_empty_vector_attribute()
model = MOI.Utilities.Model{Float64}()
x = MOI.get(model, MOI.ListOfVariableIndices())
@test typeof(x) == Vector{MOI.VariableIndex}
ret = MOI.get(model, MOI.VariablePrimalStart(), x)
@test typeof(ret) == Vector{Any}
ret = MOI.get(model, MOI.VariableName(), x)
@test typeof(ret) == Vector{String}
F, S = MOI.ScalarAffineFunction{Float64}, MOI.EqualTo{Float64}
c = MOI.get(model, MOI.ListOfConstraintIndices{F,S}())
ret = MOI.get(model, MOI.ConstraintPrimalStart(), c)
@test typeof(ret) == Vector{Any}
ret = MOI.get(model, MOI.ConstraintName(), c)
@test typeof(ret) == Vector{String}
return
end
function test_broadcastable_submittable()
submit = MOI.LazyConstraint(1)
b = Base.broadcastable(submit)
@test b isa Base.RefValue
@test b[] == submit
return
end
function test_submit_not_allowed()
submit = MOI.LazyConstraint(1)
@test MOI.SubmitNotAllowed(submit) == MOI.SubmitNotAllowed(submit, "")
err = MOI.SubmitNotAllowed(submit, "msg")
contents = sprint(showerror, err)
@test occursin("Submitting $submit cannot be performed", contents)
@test occursin("msg", contents)
return
end
struct ModelWithSupportedSubmittable <: MOI.ModelLike end
MOI.supports(::ModelWithSupportedSubmittable, ::MOI.LazyConstraint) = true
function test_submit_argument_error()
model = ModelWithSupportedSubmittable()
submit = MOI.LazyConstraint(1)
@test MOI.supports(model, submit)
@test_throws ArgumentError MOI.submit(model, submit, false)
return
end
function test_showerror_OptimizeInProgress()
err = MOI.OptimizeInProgress(MOI.VariablePrimal())
@test sprint(showerror, err) ==
"$(typeof(err)): Cannot get result as the `MOI.optimize!` has not finished."
return
end
function test_showerror_FunctionTypeMismatch()
F, G = MOI.VariableIndex, MOI.VectorOfVariables
contents = sprint(showerror, MOI.FunctionTypeMismatch{F,G}())
@test occursin("Cannot modify functions of different types", contents)
return
end
function test_showerror_SetTypeMismatch()
F, G = MOI.ZeroOne, MOI.Integer
contents = sprint(showerror, MOI.SetTypeMismatch{F,G}())
@test occursin("Cannot modify sets of different types", contents)
return
end
function test_NLPBlockDual_is_set_by_optimize()
@test MOI.is_set_by_optimize(MOI.NLPBlockDual())
return
end
function test_CallbackVariablePrimal_is_set_by_optimize()
@test MOI.is_set_by_optimize(MOI.CallbackVariablePrimal(nothing))
return
end
function test_get_bang()
model = MOI.Utilities.Model{Float64}()
x = MOI.add_variables(model, 2)
MOI.set.(model, MOI.VariableName(), x, ["x", "y"])
output = ["", ""]
@test MOI.get!(output, model, MOI.VariableName(), x) === nothing
@test output == ["x", "y"]
return
end
end # module
TestAttributes.runtests()