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 d8d0849 commit 83e1edbCopy full SHA for 83e1edb
test/resolve.jl
@@ -3,7 +3,7 @@ using LinearSolve, LinearAlgebra, SparseArrays, InteractiveUtils, Test
3
for alg in subtypes(LinearSolve.AbstractFactorization)
4
@show alg
5
if !(alg in [DiagonalFactorization, CudaOffloadFactorization]) &&
6
- !(alg isa AppleAccelerateLUFactorization) || LinearSolve.appleaccelerate_isavailable()
+ (!(alg isa AppleAccelerateLUFactorization) || LinearSolve.appleaccelerate_isavailable())
7
8
A = [1.0 2.0; 3.0 4.0]
9
alg in [KLUFactorization, UMFPACKFactorization, SparspakFactorization] &&
0 commit comments