File tree Expand file tree Collapse file tree 1 file changed +10
-13
lines changed Expand file tree Collapse file tree 1 file changed +10
-13
lines changed Original file line number Diff line number Diff line change @@ -220,19 +220,16 @@ end
220
220
end
221
221
end
222
222
223
- test_algs = if VERSION >= v " 1.9"
224
- (LUFactorization (),
225
- QRFactorization (),
226
- SVDFactorization (),
227
- RFLUFactorization (),
228
- MKLLUFactorization (),
229
- LinearSolve. defaultalg (prob1. A, prob1. b))
230
- else
231
- (LUFactorization (),
232
- QRFactorization (),
233
- SVDFactorization (),
234
- RFLUFactorization (),
235
- LinearSolve. defaultalg (prob1. A, prob1. b))
223
+ test_algs = [
224
+ LUFactorization (),
225
+ QRFactorization (),
226
+ SVDFactorization (),
227
+ RFLUFactorization (),
228
+ LinearSolve. defaultalg (prob1. A, prob1. b),
229
+ ]
230
+
231
+ if VERSION >= v " 1.9"
232
+ push! (test_algs, MKLLUFactorization ())
236
233
end
237
234
238
235
@testset " Concrete Factorizations" begin
You can’t perform that action at this time.
0 commit comments