Skip to content

Commit 9443cb2

Browse files
test: spell out SupernodalLU threshold variable (#1124)
Co-authored-by: ChrisRackauckas-Claude <accounts@chrisrackauckas.com>
1 parent ed7bcb0 commit 9443cb2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/Core/supernodal_lu.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,8 @@ end
173173
Base.get_extension(LinearSolve, :LinearSolveBLISExt) !== nothing &&
174174
push!(algs, LinearSolve.BLISLUFactorization())
175175
@test !isempty(algs) # every platform has at least one of these
176-
for alg in algs, thr in (4, 64)
177-
F = SNLU.snlu(A; dense_alg = alg, dense_threshold = thr)
176+
for alg in algs, threshold in (4, 64)
177+
F = SNLU.snlu(A; dense_alg = alg, dense_threshold = threshold)
178178
@test length(F.bcaches) > 0
179179
x = similar(b)
180180
SNLU.solve!(x, F, b)

0 commit comments

Comments
 (0)