-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathavion2.jl
More file actions
27 lines (27 loc) · 935 Bytes
/
avion2.jl
File metadata and controls
27 lines (27 loc) · 935 Bytes
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
avion2_meta = Dict(
:nvar => 49,
:variable_nvar => false,
:ncon => 15,
:variable_ncon => false,
:minimize => true,
:name => "avion2",
:has_equalities_only => true,
:has_inequalities_only => false,
:has_bounds => true,
:has_fixed_variables => false,
:objtype => :least_squares,
:contype => :linear,
:best_known_lower_bound => -Inf,
:best_known_upper_bound => Inf,
:is_feasible => missing,
:defined_everywhere => missing,
:origin => :unknown,
:implementation => :both,
)
get_avion2_nvar(; n::Integer = default_nvar, kwargs...) = 49
get_avion2_ncon(; n::Integer = default_nvar, kwargs...) = 15
get_avion2_nlin(; n::Integer = default_nvar, kwargs...) = 15
get_avion2_nnln(; n::Integer = default_nvar, kwargs...) = 0
get_avion2_nequ(; n::Integer = default_nvar, kwargs...) = 15
get_avion2_nineq(; n::Integer = default_nvar, kwargs...) = 0
get_avion2_nls_nequ(; n::Integer = default_nvar, kwargs...) = 17