Skip to content

Commit

Permalink
v0.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
haampie committed Feb 22, 2024
1 parent 71471ee commit 9b6c0ea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ArnoldiMethod"
uuid = "ec485272-7323-5ecc-a04f-4719b315124d"
author = ["Harmen Stoppels <me@harmenstoppels.nl>", "Lauri Nyman"]
version = "0.3.4"
version = "0.3.5"

[deps]
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Expand Down
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 9b6c0ea

Please sign in to comment.