File tree Expand file tree Collapse file tree 2 files changed +10
-9
lines changed Expand file tree Collapse file tree 2 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 11name = " InfiniteArrays"
22uuid = " 4858937d-0d70-526a-a4dd-2d5cb5dd786c"
3- version = " 0.15"
3+ version = " 0.15.0 "
44
55[deps ]
66ArrayLayouts = " 4c555306-a7a7-4459-81d9-ec55ddd5c99a"
7+ BandedMatrices = " aae01518-5342-5314-be14-df237901396f"
78FillArrays = " 1a297f60-69ca-5386-bcde-b61e274b549b"
89Infinities = " e1ba4f0e-776d-440f-acd9-e1d2e9742647"
910LazyArrays = " 5078a376-72f3-5289-bfd5-ec5146d43c02"
@@ -14,12 +15,17 @@ BandedMatrices = "aae01518-5342-5314-be14-df237901396f"
1415DSP = " 717857b8-e6f2-59f4-9121-6e50c889abd2"
1516Statistics = " 10745b16-79ce-11e8-11f9-7d13ad32a3b2"
1617
18+ [extensions ]
19+ InfiniteArraysBandedMatricesExt = " BandedMatrices"
20+ InfiniteArraysDSPExt = " DSP"
21+ InfiniteArraysStatisticsExt = " Statistics"
22+
1723[compat ]
1824Aqua = " 0.8"
1925ArrayLayouts = " 1.8"
2026BandedMatrices = " 1.0"
21- BlockArrays = " 1.0"
2227Base64 = " 1"
28+ BlockArrays = " 1.0"
2329DSP = " 0.7"
2430FillArrays = " 1.0"
2531Infinities = " 0.1.1"
@@ -30,11 +36,6 @@ Statistics = "1"
3036Test = " 1"
3137julia = " 1.10"
3238
33- [extensions ]
34- InfiniteArraysBandedMatricesExt = " BandedMatrices"
35- InfiniteArraysDSPExt = " DSP"
36- InfiniteArraysStatisticsExt = " Statistics"
37-
3839[extras ]
3940Aqua = " 4c88cf16-eb10-579e-8560-4a9242c79595"
4041BandedMatrices = " aae01518-5342-5314-be14-df237901396f"
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ const PertToeplitzLayout = InfiniteArraysBandedMatricesExt.PertToeplitzLayout
1616const InfBandCartesianIndices = InfiniteArraysBandedMatricesExt. InfBandCartesianIndices
1717
1818using Base: oneto
19- using LazyArrays: simplifiable
19+ using LazyArrays: simplifiable, ApplyLayout, BroadcastBandedLayout
2020
2121@testset " ∞-banded" begin
2222 @testset " Diagonal and BandedMatrix" begin
@@ -244,7 +244,7 @@ using LazyArrays: simplifiable
244244 @test A * B isa MulMatrix
245245 @test B' A isa MulMatrix
246246
247- @test all (diag (A[1 : 6 , 1 : 6 ]) .=== zeros (6 ))
247+ @test all (diag (A[1 : 6 , 1 : 6 ]) .=== zeros (Int, 6 ))
248248
249249 @test (A* B)[1 : 7 , 1 : 5 ] ≈ A[1 : 7 , 1 : 6 ] * B[1 : 6 , 1 : 5 ]
250250 @test (B' A)[1 : 5 , 1 : 7 ] ≈ (B' )[1 : 5 , 1 : 6 ] * A[1 : 6 , 1 : 7 ]
You can’t perform that action at this time.
0 commit comments