From 21c6521a9ad0005db5fd056902929ea1e74c92b4 Mon Sep 17 00:00:00 2001 From: mtfishman Date: Sun, 6 Oct 2024 12:45:12 -0400 Subject: [PATCH] Loosen test bounds --- test/linalg.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/linalg.jl b/test/linalg.jl index 5ea9df3..24c80ed 100644 --- a/test/linalg.jl +++ b/test/linalg.jl @@ -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