Skip to content

Commit eb5c23e

Browse files
committed
format
1 parent feb477a commit eb5c23e

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/factorization.jl

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,6 @@ end
328328

329329
## RFLUFactorization
330330

331-
332331
struct RFLUFactorization{P, T}
333332
RFLUFactorization(::Val{P}, ::Val{T}) where {P, T} = new{P, T}()
334333
end
@@ -339,11 +338,12 @@ end
339338

340339
function 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
344343
end
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)
356356
end
357357

358-
359358
## FastLAPACKFactorizations
360359

361360
struct WorkspaceAndFactors{W, F}

0 commit comments

Comments
 (0)