File tree Expand file tree Collapse file tree 3 files changed +24
-1
lines changed Expand file tree Collapse file tree 3 files changed +24
-1
lines changed Original file line number Diff line number Diff line change 1
1
name = " BlockSparseArrays"
2
2
uuid = " 2c9a651f-6452-4ace-a6ac-809f4280fbb4"
3
3
authors = [
" ITensor developers <[email protected] > and contributors" ]
4
- version = " 0.2.5 "
4
+ version = " 0.2.6 "
5
5
6
6
[deps ]
7
7
Adapt = " 79e6a3ab-5dfb-504d-930d-738a2a938a0e"
Original file line number Diff line number Diff line change 1
1
module BlockSparseArrays
2
+
3
+ export BlockSparseArray,
4
+ BlockSparseMatrix,
5
+ BlockSparseVector,
6
+ blockstoredlength,
7
+ eachblockstoredindex,
8
+ eachstoredblock
9
+
2
10
include (" BlockArraysExtensions/BlockArraysExtensions.jl" )
3
11
include (" blocksparsearrayinterface/blocksparsearrayinterface.jl" )
4
12
include (" blocksparsearrayinterface/linearalgebra.jl" )
@@ -22,4 +30,5 @@ include("abstractblocksparsearray/cat.jl")
22
30
include (" blocksparsearray/defaults.jl" )
23
31
include (" blocksparsearray/blocksparsearray.jl" )
24
32
include (" BlockArraysSparseArraysBaseExt/BlockArraysSparseArraysBaseExt.jl" )
33
+
25
34
end
Original file line number Diff line number Diff line change
1
+ using BlockSparseArrays: BlockSparseArrays
2
+ using Test: @test , @testset
3
+ @testset " Test exports" begin
4
+ exports = [
5
+ :BlockSparseArrays ,
6
+ :BlockSparseArray ,
7
+ :BlockSparseMatrix ,
8
+ :BlockSparseVector ,
9
+ :blockstoredlength ,
10
+ :eachblockstoredindex ,
11
+ :eachstoredblock ,
12
+ ]
13
+ @test issetequal (names (BlockSparseArrays), exports)
14
+ end
You can’t perform that action at this time.
0 commit comments