@@ -17,8 +17,8 @@ function defaultalg(A, b)
17
17
elseif (length (b) <= 100 || (isopenblas () && length (b) <= 500 )) &&
18
18
eltype (A) <: Union{Float32, Float64} && Base. Threads. nthreads () > 1
19
19
alg = RFLUFactorization ()
20
- elseif A === nothing || A isa Matrix
21
- alg = FastLUFactorization ()
20
+ # elseif A === nothing || A isa Matrix
21
+ # alg = FastLUFactorization()
22
22
else
23
23
alg = LUFactorization ()
24
24
end
@@ -75,9 +75,9 @@ function SciMLBase.solve(cache::LinearCache, alg::Nothing,
75
75
eltype (A) <: Union{Float32, Float64} && Base. Threads. nthreads () > 1
76
76
alg = RFLUFactorization ()
77
77
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...)
81
81
else
82
82
alg = LUFactorization ()
83
83
SciMLBase. solve (cache, alg, args... ; kwargs... )
@@ -137,9 +137,9 @@ function init_cacheval(alg::Nothing, A, b, u, Pl, Pr, maxiters, abstol, reltol,
137
137
eltype (A) <: Union{Float32, Float64} && Base. Threads. nthreads () > 1
138
138
alg = RFLUFactorization ()
139
139
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)
143
143
else
144
144
alg = LUFactorization ()
145
145
init_cacheval (alg, A, b, u, Pl, Pr, maxiters, abstol, reltol, verbose)
0 commit comments