Skip to content

Commit

Permalink
dope it's not a subtype
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Aug 7, 2023
1 parent 83e1edb commit 6d5aeb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/resolve.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ using LinearSolve, LinearAlgebra, SparseArrays, InteractiveUtils, Test

for alg in subtypes(LinearSolve.AbstractFactorization)
@show alg
if !(alg in [DiagonalFactorization, CudaOffloadFactorization]) &&
(!(alg isa AppleAccelerateLUFactorization) || LinearSolve.appleaccelerate_isavailable())
if !(alg in [DiagonalFactorization, CudaOffloadFactorization, AppleAccelerateLUFactorization]) &&
(!(alg == AppleAccelerateLUFactorization) || LinearSolve.appleaccelerate_isavailable())

A = [1.0 2.0; 3.0 4.0]
alg in [KLUFactorization, UMFPACKFactorization, SparspakFactorization] &&
Expand Down

0 comments on commit 6d5aeb4

Please sign in to comment.