Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Test
import RecursiveFactorization
import LinearAlgebra
using LinearAlgebra: norm, Adjoint
using LinearAlgebra: norm, Adjoint, Transpose
using Random

Random.seed!(12)
Expand All @@ -14,7 +14,7 @@ function testlu(A, MF, BF)
@test norm(MF.L * MF.U - A[MF.p, :], Inf) < 200sqrt(eps(real(one(float(first(A))))))
nothing
end
testlu(A::Adjoint, MF::Adjoint, BF) = testlu(parent(A), parent(MF), BF)
testlu(A::Union{Transpose, Adjoint}, MF, BF) = testlu(parent(A), parent(MF), BF)

@testset "Test LU factorization" begin for _p in (true, false),
T in (Float64, Float32, ComplexF64, ComplexF32,
Expand Down