Skip to content

Commit

Permalink
style mistake to test out automated PR
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnoStrouwen committed Mar 3, 2024
1 parent 1b8f51e commit 9fcb852
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/krylov_phiv.jl
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function Base.resize!(C::ExpvCache{T}, maxiter::Int) where {T}
end
function get_cache(C::ExpvCache, m::Int)
m^2 > length(C.mem) && resize!(C, m) # resize the cache if needed
reshape(@view(C.mem[1:(m^2)]), m, m)
reshape(@view(C.mem[1:(m^2)]), m,m)

Check warning on line 15 in src/krylov_phiv.jl

View check run for this annotation

Codecov / codecov/patch

src/krylov_phiv.jl#L15

Added line #L15 was not covered by tests
end

############################
Expand Down

0 comments on commit 9fcb852

Please sign in to comment.