From 21c6521a9ad0005db5fd056902929ea1e74c92b4 Mon Sep 17 00:00:00 2001 From: mtfishman Date: Sun, 6 Oct 2024 12:45:12 -0400 Subject: [PATCH 1/2] 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 From b55d843caa5be3943a9588d654311c917e0cbb55 Mon Sep 17 00:00:00 2001 From: Matt Fishman Date: Sun, 6 Oct 2024 12:47:05 -0400 Subject: [PATCH 2/2] Bump to v0.1.11 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 9dbfef3..4563888 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "ITensorGaussianMPS" uuid = "2be41995-7c9f-4653-b682-bfa4e7cebb93" authors = ["Matthew Fishman and contributors"] -version = "0.1.10" +version = "0.1.11" [deps] Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"