We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 124b541 commit 98ff84dCopy full SHA for 98ff84d
test/basictests.jl
@@ -202,13 +202,23 @@ end
202
end
203
204
205
- @testset "Concrete Factorizations" begin
206
- for alg in (LUFactorization(),
+ test_algs = if VERISON >= v"1.9"
+ (LUFactorization(),
207
QRFactorization(),
208
SVDFactorization(),
209
RFLUFactorization(),
210
MKLLUFactorization(),
211
LinearSolve.defaultalg(prob1.A, prob1.b))
212
+ else
213
214
+ QRFactorization(),
215
+ SVDFactorization(),
216
+ RFLUFactorization(),
217
+ LinearSolve.defaultalg(prob1.A, prob1.b))
218
+ end
219
+
220
+ @testset "Concrete Factorizations" begin
221
+ for alg in test_algs
222
@testset "$alg" begin
223
test_interface(alg, prob1, prob2)
224
0 commit comments