Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
haampie committed Feb 22, 2024
1 parent b3d70c7 commit 8b23db0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/partial_schur.jl
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,9 @@ end
@test norm(A * F.Q - F.Q * F.R) < 1e-10

# Then continue to find a couple more, at higher tolerance
F, history = partialschur!(A, arnoldi, nev = 5, start_from = history.nconverged + 1 , tol = 1e-8)
F, history =
partialschur!(A, arnoldi, nev = 5, start_from = history.nconverged + 1, tol = 1e-8)
@test history.converged
@test history.nconverged in 5:6
@test norm(A * F.Q - F.Q * F.R) < 1e-6
end
end

0 comments on commit 8b23db0

Please sign in to comment.