Skip to content

Commit aa8daf6

Browse files
fix typo
1 parent a5d7c1a commit aa8daf6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/factorization.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ end
227227
struct RFWrapper{P,T}
228228
RFWrapper(::Val{P},::Val{T}) where {P,T} = new{P,T}()
229229
end
230-
(::RFWrapper{P,T})(A) where {P,T} = RecursiveFactorization.lu!(A,val(P),val(T))
230+
(::RFWrapper{P,T})(A) where {P,T} = RecursiveFactorization.lu!(A,Val(P),Val(T))
231231

232232
RFLUFactorization(;pivot = Val(true), thread = Val(true)) = GenericFactorization(;fact_alg=RFWrapper(pivot,thread))
233233

0 commit comments

Comments
 (0)