From 9160cec2409f1b1808bc84bb60bfc9a7e69007ce Mon Sep 17 00:00:00 2001 From: Anant Thazhemadam <47104651+thazhemadam@users.noreply.github.com> Date: Mon, 8 Apr 2024 18:52:56 +0700 Subject: [PATCH] refactor: accept formatting suggestion Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- src/krylov_phiv_adaptive.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/krylov_phiv_adaptive.jl b/src/krylov_phiv_adaptive.jl index a981472..9ab8787 100644 --- a/src/krylov_phiv_adaptive.jl +++ b/src/krylov_phiv_adaptive.jl @@ -31,7 +31,7 @@ intuitive interface (vector `b` instead of a n-by-1 matrix `B`). arXiv:0907.4631. """ function expv_timestep(ts::Vector{tType}, -A, b; kwargs...) where {tType <: Real} + A, b; kwargs...) where {tType <: Real} U = similar(b, size(A, 1), length(ts)) expv_timestep!(U, ts, A, b; kwargs...) end