From 2a45d71966fa531fbd2ea61df130dd4c656ded3b Mon Sep 17 00:00:00 2001 From: positr0nium Date: Mon, 5 Feb 2024 17:24:33 +0100 Subject: [PATCH] lowered the cutoff threshold for floating point errors in the simulator --- src/qrisp/simulator/numerics_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qrisp/simulator/numerics_config.py b/src/qrisp/simulator/numerics_config.py index a1940f3a..c388cdc0 100644 --- a/src/qrisp/simulator/numerics_config.py +++ b/src/qrisp/simulator/numerics_config.py @@ -22,4 +22,4 @@ # import cupy as xp -float_tresh = 1e-5 +float_tresh = 1e-7