@@ -17,8 +17,8 @@ function defaultalg(A, b)
1717 elseif (length (b) <= 100 || (isopenblas () && length (b) <= 500 )) &&
1818 eltype (A) <: Union{Float32, Float64} && Base. Threads. nthreads () > 1
1919 alg = RFLUFactorization ()
20- elseif A === nothing || A isa Matrix
21- alg = FastLUFactorization ()
20+ # elseif A === nothing || A isa Matrix
21+ # alg = FastLUFactorization()
2222 else
2323 alg = LUFactorization ()
2424 end
@@ -75,9 +75,9 @@ function SciMLBase.solve(cache::LinearCache, alg::Nothing,
7575 eltype (A) <: Union{Float32, Float64} && Base. Threads. nthreads () > 1
7676 alg = RFLUFactorization ()
7777 SciMLBase. solve (cache, alg, args... ; kwargs... )
78- elseif A isa Matrix
79- alg = FastLUFactorization ()
80- SciMLBase. solve (cache, alg, args... ; kwargs... )
78+ # elseif A isa Matrix
79+ # alg = FastLUFactorization()
80+ # SciMLBase.solve(cache, alg, args...; kwargs...)
8181 else
8282 alg = LUFactorization ()
8383 SciMLBase. solve (cache, alg, args... ; kwargs... )
@@ -137,9 +137,9 @@ function init_cacheval(alg::Nothing, A, b, u, Pl, Pr, maxiters, abstol, reltol,
137137 eltype (A) <: Union{Float32, Float64} && Base. Threads. nthreads () > 1
138138 alg = RFLUFactorization ()
139139 init_cacheval (alg, A, b, u, Pl, Pr, maxiters, abstol, reltol, verbose)
140- elseif A isa Matrix
141- alg = FastLUFactorization ()
142- init_cacheval (alg, A, b, u, Pl, Pr, maxiters, abstol, reltol, verbose)
140+ # elseif A isa Matrix
141+ # alg = FastLUFactorization()
142+ # init_cacheval(alg, A, b, u, Pl, Pr, maxiters, abstol, reltol, verbose)
143143 else
144144 alg = LUFactorization ()
145145 init_cacheval (alg, A, b, u, Pl, Pr, maxiters, abstol, reltol, verbose)
0 commit comments