You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
JuMP v1.10.0 added experimental support for keyword indexing of
492
-
[`Containers.DenseAxisArray`](@ref) and [`Containers.SparseAxisArray`](@ref).
493
-
Keyword indexing lets you uses the named indices of [`Containers.DenseAxisArray`](@ref)
494
-
and [`Containers.SparseAxisArray`](@ref) as keyword arguments when indexing a
495
-
container.
496
-
497
-
### The container macro
498
-
499
-
For containers constructed using the [`Containers.@container`](@ref) macro,
500
-
opt-in to the keyword indexing syntax by passing
501
-
`enable_keyword_indexing = true`:
502
-
503
-
```jldoctest
504
-
julia> Containers.@container(
505
-
x[i=2:4, j=1:3],
506
-
i + j,
507
-
enable_keyword_indexing = true,
508
-
)
509
-
2-dimensional DenseAxisArray{Int64,2,...} with index sets:
510
-
Dimension 1, 2:4
511
-
Dimension 2, Base.OneTo(3)
512
-
And data, a 3×3 Matrix{Int64}:
513
-
3 4 5
514
-
4 5 6
515
-
5 6 7
516
-
517
-
julia> x[i = 2, j = 1]
518
-
3
519
-
520
-
julia> Containers.@container(
521
-
y[i=2:4, j=1:3; i > j],
522
-
i + j,
523
-
enable_keyword_indexing = true,
524
-
)
525
-
JuMP.Containers.SparseAxisArray{Int64, 2, Tuple{Int64, Int64}} with 6 entries:
526
-
[2, 1] = 3
527
-
[3, 1] = 4
528
-
[3, 2] = 5
529
-
[4, 1] = 5
530
-
[4, 2] = 6
531
-
[4, 3] = 7
532
-
533
-
julia> y[i = 2:4, j = 1]
534
-
JuMP.Containers.SparseAxisArray{Int64, 1, Tuple{Int64}} with 3 entries:
535
-
[2] = 3
536
-
[3] = 4
537
-
[4] = 5
538
-
```
539
-
540
-
### The JuMP macros
541
-
542
-
For containers constructed using the JuMP macros like [`@variable`](@ref),
543
-
opt-in using [`enable_keyword_indexing`](@ref):
544
-
545
-
```jldoctest
546
-
julia> using JuMP
547
-
548
-
julia> model = Model();
549
-
550
-
julia> @variable(model, x[i = 2:3])
551
-
1-dimensional DenseAxisArray{VariableRef,1,...} with index sets:
552
-
Dimension 1, 2:3
553
-
And data, a 2-element Vector{VariableRef}:
554
-
x[2]
555
-
x[3]
556
-
557
-
julia> x[i = 2]
558
-
ERROR: Keyword indexing is disabled. To enable, pass `enable_keyword_indexing = true` to the `Containers.@container` macro, or call `JuMP.enable_keyword_indexing(model, true)` before calling any JuMP macros like `@variable`.
559
-
Stacktrace:
560
-
[...]
561
-
562
-
julia> model = Model();
563
-
564
-
julia> enable_keyword_indexing(model, true)
565
-
566
-
julia> @variable(model, x[i = 2:3])
567
-
1-dimensional DenseAxisArray{VariableRef,1,...} with index sets:
568
-
Dimension 1, 2:3
569
-
And data, a 2-element Vector{VariableRef}:
570
-
x[2]
571
-
x[3]
572
-
573
-
julia> x[i = 2]
574
-
x[2]
575
-
```
576
-
577
-
### Limitations
578
-
579
-
The keyword indexing syntax is currently opt-in because it does not work for
580
-
`Array`:
581
-
582
-
```jldoctest
583
-
julia> Containers.@container(
584
-
x[i=1:4, j=1:3],
585
-
i + j,
586
-
enable_keyword_indexing = true,
587
-
)
588
-
ERROR: Keyword indexing is not supported with Array.
589
-
Stacktrace:
590
-
[...]
591
-
```
592
-
593
-
Work-around this limitation by forcing the container type:
594
-
595
-
```jldoctest
596
-
julia> model = Model();
597
-
598
-
julia> enable_keyword_indexing(model, true)
599
-
600
-
julia> @variable(model, x[i = 1:3])
601
-
3-element Vector{VariableRef}:
602
-
x[1]
603
-
x[2]
604
-
x[3]
605
-
606
-
julia> x[i = 2]
607
-
ERROR: MethodError: no method matching getindex(::Vector{VariableRef}; i=2)
0 commit comments