File tree Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ WignerSymbols = "9f57e263-0b3d-5e2e-b1be-24f2bb48858b"
20
20
21
21
[compat ]
22
22
Accessors = " 0.1.42"
23
- BlockArrays = " 1.6 "
23
+ BlockArrays = " 1.7 "
24
24
BlockSparseArrays = " 0.7.4"
25
25
GradedArrays = " 0.4.14"
26
26
HalfIntegers = " 1.6"
Original file line number Diff line number Diff line change @@ -27,12 +27,6 @@ using TensorProducts: tensor_product
27
27
using TypeParameterAccessors: type_parameters
28
28
29
29
# ======================================= Misc ===========================================
30
-
31
- function to_blockindexrange (b1:: BlockIndexRange{1} , b2:: BlockIndexRange{1} )
32
- t = (b1, b2)
33
- return Block (Block .(t))[to_block_indices .(t)... ]
34
- end
35
-
36
30
function flip_domain (nonflipped_col_axis, nonflipped_trees_to_ranges)
37
31
col_axis = dual (nonflipped_col_axis)
38
32
domain_trees_to_ranges_mapping = Dict (
@@ -93,7 +87,7 @@ function intersect_codomain_domain(
93
87
Iterators. product (codomain_trees_to_ranges_mapping, domain_trees_to_ranges_mapping),
94
88
),
95
89
) do t
96
- return first .(t) => to_blockindexrange (last .(t)... )
90
+ return first .(t) => BlockIndexRange (last .(t))
97
91
end ,
98
92
)
99
93
end
You can’t perform that action at this time.
0 commit comments