Skip to content

Commit

Permalink
Update basictests.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas authored Sep 22, 2023
1 parent 124b541 commit 98ff84d
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions test/basictests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -202,13 +202,23 @@ end
end
end

@testset "Concrete Factorizations" begin
for alg in (LUFactorization(),
test_algs = if VERISON >= v"1.9"
(LUFactorization(),
QRFactorization(),
SVDFactorization(),
RFLUFactorization(),
MKLLUFactorization(),
LinearSolve.defaultalg(prob1.A, prob1.b))
else
(LUFactorization(),
QRFactorization(),
SVDFactorization(),
RFLUFactorization(),
LinearSolve.defaultalg(prob1.A, prob1.b))
end

@testset "Concrete Factorizations" begin
for alg in test_algs
@testset "$alg" begin
test_interface(alg, prob1, prob2)
end
Expand Down

0 comments on commit 98ff84d

Please sign in to comment.