From 411349fb754e6fae002c46a7a474f926080e60de Mon Sep 17 00:00:00 2001 From: Lukas <37111893+lkdvos@users.noreply.github.com> Date: Wed, 4 Oct 2023 18:44:46 +0200 Subject: [PATCH] Lower test precision --- test/algorithms.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/algorithms.jl b/test/algorithms.jl index f12845a0..2c79badc 100644 --- a/test/algorithms.jl +++ b/test/algorithms.jl @@ -29,7 +29,7 @@ include("setup.jl") ψ, envs, δ = find_groundstate(ψ₀, H, alg) v = variance(ψ, H, envs) - @test sum(δ) < 1e-4 + @test sum(δ) < 1e-3 @test v₀ > v && v < 1e-2 # energy variance should be low end