Skip to content

Commit

Permalink
Revert "fail formatting on purpose"
Browse files Browse the repository at this point in the history
This reverts commit 724f45f.
  • Loading branch information
thazhemadam committed Apr 1, 2024
1 parent 724f45f commit 80fdb51
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/arnoldi.jl
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,7 @@ 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 80fdb51

Please sign in to comment.