Skip to content

Commit cd766a2

Browse files
authored
[BlockSparseArrays] Allow more general axes (#1467)
* [BlockSparseArrays] Allow more general axes * [NDTensors] Bump to v0.3.10
1 parent 1269d89 commit cd766a2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

NDTensors/Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "NDTensors"
22
uuid = "23ae76d9-e61a-49c4-8f12-3f1a16adf9cf"
33
authors = ["Matthew Fishman <[email protected]>"]
4-
version = "0.3.9"
4+
version = "0.3.10"
55

66
[deps]
77
Accessors = "7d9f7c33-5ae7-4f3b-8dc6-eff91059b697"

NDTensors/src/lib/BlockSparseArrays/src/blocksparsearray/blocksparsearray.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ struct BlockSparseArray{
1010
N,
1111
A<:AbstractArray{T,N},
1212
Blocks<:AbstractArray{A,N},
13-
Axes<:NTuple{N,AbstractUnitRange{Int}},
13+
Axes<:Tuple{Vararg{AbstractUnitRange,N}},
1414
} <: AbstractBlockSparseArray{T,N}
1515
blocks::Blocks
1616
axes::Axes

0 commit comments

Comments
 (0)