We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ccf8cd4 commit 1c97106Copy full SHA for 1c97106
1 file changed
test/runtests.jl
@@ -18,7 +18,8 @@ end
18
@testset "Test LU factorization" begin
19
for _p in (true, false), T in (Float64, Float32, ComplexF64, ComplexF32, Real)
20
p = Val(_p)
21
- for s in [1:10; 50:80:200; 300]
+ for (i, s) in enumerate([1:10; 50:80:200; 300])
22
+ iseven(i) && (p = RecursiveFactorization.to_stdlib_pivot(p))
23
siz = (s, s+2)
24
@info("size: $(siz[1]) × $(siz[2]), T = $T, p = $_p")
25
if isconcretetype(T)
0 commit comments