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 a211d5f commit 9bbb265Copy full SHA for 9bbb265
src/extension_algs.jl
@@ -95,8 +95,7 @@ Additional optimization for complex matrices is in the works.
95
"""
96
struct RFLUFactorization{P, T} <: AbstractDenseFactorization
97
function RFLUFactorization(::Val{P}, ::Val{T}; throwerror = true) where {P, T}
98
- ext = Base.get_extension(@__MODULE__, :LinearSolveRecursiveFactorizationExt)
99
- if ext === nothing
+ if userecursivefactorization(nothing)
100
throwerror &&
101
error("RFLUFactorization requires that RecursiveFactorization.jl is loaded, i.e. `using RecursiveFactorization`")
102
end
0 commit comments