Skip to content

Commit

Permalink
fail formatting on purpose
Browse files Browse the repository at this point in the history
Signed-off-by: Anant Thazhemadam <[email protected]>
  • Loading branch information
thazhemadam committed Apr 1, 2024
1 parent 3087287 commit 7822f00
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/arnoldi.jl
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ mutable struct KrylovSubspace{T, U, B, VType <: AbstractMatrix{T},
H::HType # Gram-Schmidt coefficients (real for Hermitian matrices)
end

function KrylovSubspace{T, U}(n::Integer, maxiter::Integer = 30,
function KrylovSubspace{T, U}(n::Integer,
maxiter::Integer = 30,
augmented::Integer = false) where {T, U}
V = Matrix{T}(undef, n + augmented, maxiter + 1)
H = fill(zero(U), maxiter + 1, maxiter + !iszero(augmented))
Expand Down

0 comments on commit 7822f00

Please sign in to comment.