File tree 3 files changed +26
-1
lines changed
3 files changed +26
-1
lines changed Original file line number Diff line number Diff line change 1
1
name = " SparseArraysBase"
2
2
uuid = " 0d5efcca-f356-4864-8770-e1ed8d78f208"
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
Accessors = " 7d9f7c33-5ae7-4f3b-8dc6-eff91059b697"
Original file line number Diff line number Diff line change 1
1
module SparseArraysBase
2
2
3
+ export SparseArrayDOK,
4
+ SparseMatrixDOK,
5
+ SparseVectorDOK,
6
+ eachstoredindex,
7
+ isstored,
8
+ storedlength,
9
+ storedpairs,
10
+ storedvalues
11
+
3
12
include (" abstractsparsearrayinterface.jl" )
4
13
include (" sparsearrayinterface.jl" )
5
14
include (" wrappers.jl" )
Original file line number Diff line number Diff line change
1
+ using SparseArraysBase: SparseArraysBase
2
+ using Test: @test , @testset
3
+ @testset " Test exports" begin
4
+ exports = [
5
+ :SparseArraysBase ,
6
+ :SparseArrayDOK ,
7
+ :SparseMatrixDOK ,
8
+ :SparseVectorDOK ,
9
+ :eachstoredindex ,
10
+ :isstored ,
11
+ :storedlength ,
12
+ :storedpairs ,
13
+ :storedvalues ,
14
+ ]
15
+ @test issetequal (names (SparseArraysBase), exports)
16
+ end
You can’t perform that action at this time.
0 commit comments