Skip to content
This repository was archived by the owner on Aug 22, 2025. It is now read-only.

Commit 67977f2

Browse files
update Julia lower bound for BlockBandedMatrices
1 parent 0c8a549 commit 67977f2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ Adapt = "1"
2222
ArrayInterface = "1.1, 2.0"
2323
Compat = "2.2, 3"
2424
DataStructures = "0.17"
25-
DiffEqDiffTools = "1.3"
25+
DiffEqDiffTools = "1.7"
2626
ForwardDiff = "0.10"
2727
LightGraphs = "1.3"
2828
Requires = "0.5, 1.0"
2929
VertexSafeGraphs = "0.1"
30-
julia = "1"
30+
julia = "1.2"
3131

3232
[extras]
3333
BandedMatrices = "aae01518-5342-5314-be14-df237901396f"

test/test_specialmatrices.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ function _testvalidity(A)
4242
colorvec=matrix_colors(A)
4343
ncolor=maximum(colorvec)
4444
for colorvec in 1:ncolor
45-
subA=A[:,findall(x->x==colorvec,colorvec)]
45+
subA=Array(A)[:,findall(x->x==colorvec,colorvec)]
4646
@test maximum(sum(subA,dims=2))<=1.0
4747
end
4848
end
@@ -56,7 +56,7 @@ _testvalidity(bidiagonalL)
5656
_testvalidity(tridiagonal)
5757
_testvalidity(symtridiagonal)
5858
_testvalidity(banded)
59-
#_testvalidity(blockbanded1)
59+
_testvalidity(blockbanded1)
6060
_testvalidity(blockbanded2)
6161
_testvalidity(bandedblockbanded1)
6262
_testvalidity(bandedblockbanded2)

0 commit comments

Comments
 (0)