Skip to content

Commit c9f72ab

Browse files
format
1 parent 1d3cea8 commit c9f72ab

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/krylov_phiv_error_estimate.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ function expv!(w::AbstractVector{T}, t::Number, A, b::AbstractVector{T},
6060
m = min(Ks.maxiter, size(A, 1)),
6161
verbose::Bool = false,
6262
expmethod = ExpMethodHigham2005Base()) where {B, T <: Number,
63-
HSC <: HermitianSubspaceCache}
63+
HSC <: HermitianSubspaceCache}
6464
if m > Ks.maxiter
6565
resize!(Ks, m)
6666
else

src/phi.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ Non-allocating version of `phiv_dense`.
6060
"""
6161
function phiv_dense!(w::AbstractMatrix{T}, A::AbstractMatrix{T},
6262
v::AbstractVector{T}, k::Integer;
63-
cache = nothing, expmethod = ExpMethodHigham2005Base()) where {T <: Number}
63+
cache = nothing,
64+
expmethod = ExpMethodHigham2005Base()) where {T <: Number}
6465
@assert size(w, 1)==size(A, 1)==size(A, 2)==length(v) "Dimension mismatch"
6566
@assert size(w, 2)==k + 1 "Dimension mismatch"
6667
m = length(v)

0 commit comments

Comments
 (0)