From 0c6da1046a4b1d0ff07287fdc63de4d127183e70 Mon Sep 17 00:00:00 2001 From: ChrisRackauckas-Claude Date: Wed, 29 Jul 2026 19:20:46 -0400 Subject: [PATCH] Spell out the SupernodalLU threshold variable Co-Authored-By: Chris Rackauckas --- test/Core/supernodal_lu.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Core/supernodal_lu.jl b/test/Core/supernodal_lu.jl index 470f89f28..9ac5a1d86 100644 --- a/test/Core/supernodal_lu.jl +++ b/test/Core/supernodal_lu.jl @@ -173,8 +173,8 @@ end Base.get_extension(LinearSolve, :LinearSolveBLISExt) !== nothing && push!(algs, LinearSolve.BLISLUFactorization()) @test !isempty(algs) # every platform has at least one of these - for alg in algs, thr in (4, 64) - F = SNLU.snlu(A; dense_alg = alg, dense_threshold = thr) + for alg in algs, threshold in (4, 64) + F = SNLU.snlu(A; dense_alg = alg, dense_threshold = threshold) @test length(F.bcaches) > 0 x = similar(b) SNLU.solve!(x, F, b)