328328
329329# # RFLUFactorization
330330
331-
332331struct RFLUFactorization{P, T}
333332 RFLUFactorization (:: Val{P} , :: Val{T} ) where {P, T} = new {P, T} ()
334333end
@@ -339,11 +338,12 @@ end
339338
340339function init_cacheval (alg:: RFLUFactorization , A, b, u, Pl, Pr, maxiters,
341340 abstol, reltol, verbose)
342- ipiv = Vector {LinearAlgebra.BlasInt} (undef, min (size (A)... ));
341+ ipiv = Vector {LinearAlgebra.BlasInt} (undef, min (size (A)... ))
343342 ArrayInterfaceCore. lu_instance (convert (AbstractMatrix, A)), ipiv
344343end
345344
346- function SciMLBase. solve (cache:: LinearCache , alg:: RFLUFactorization{P,T} ; kwargs... ) where {P,T}
345+ function SciMLBase. solve (cache:: LinearCache , alg:: RFLUFactorization{P, T} ;
346+ kwargs... ) where {P, T}
347347 A = cache. A
348348 A = convert (AbstractMatrix, A)
349349 fact, ipiv = cache. cacheval
@@ -355,7 +355,6 @@ function SciMLBase.solve(cache::LinearCache, alg::RFLUFactorization{P,T}; kwargs
355355 SciMLBase. build_linear_solution (alg, y, nothing , cache)
356356end
357357
358-
359358# # FastLAPACKFactorizations
360359
361360struct WorkspaceAndFactors{W, F}
0 commit comments