Skip to content

Commit

Permalink
Loosen test bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
mtfishman committed Oct 6, 2024
1 parent 1e07b3c commit 21c6521
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/linalg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ end
AU = A * U
B = GMPS.make_subspace_real_if_possible(AU)
# verify that same subspace is spanned by real eigenvectors B as original eigenvectors A or AU
@test norm(((B * B' * A) .- A)) <= eps(Float64) * 10
@test norm(((B * B' * AU) .- AU)) <= eps(Float64) * 10
@test norm(((B * B' * A) .- A)) <= eps(Float64) * 10^2
@test norm(((B * B' * AU) .- AU)) <= eps(Float64) * 10^2
end

0 comments on commit 21c6521

Please sign in to comment.