Skip to content

Commit 486d924

Browse files
Update src/default.jl
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 4d3a346 commit 486d924

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/default.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,8 @@ function defaultalg(A, b, assump::OperatorAssumptions{Bool})
187187
elseif (length(b) <= 100 || (isopenblas() && length(b) <= 500) ||
188188
(usemkl && length(b) <= 200)) &&
189189
(A === nothing ? eltype(b) <: Union{Float32, Float64} :
190-
eltype(A) <: Union{Float32, Float64}) && userecursivefactorization(A)
190+
eltype(A) <: Union{Float32, Float64}) &&
191+
userecursivefactorization(A)
191192
DefaultAlgorithmChoice.RFLUFactorization
192193
#elseif A === nothing || A isa Matrix
193194
# alg = FastLUFactorization()

0 commit comments

Comments
 (0)