From aff0ca7339a37e13c0f0b22daaffe3a8bbef21b9 Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Mon, 8 Nov 2021 10:05:33 +0000 Subject: [PATCH] Corr Anti-symmetric raised to three sigma --- pyerrors/correlators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyerrors/correlators.py b/pyerrors/correlators.py index 1d11bedb..15555c1b 100644 --- a/pyerrors/correlators.py +++ b/pyerrors/correlators.py @@ -171,7 +171,7 @@ class Corr: if self.T % 2 != 0: raise Exception("Can not symmetrize odd T") - if not all([o.is_zero_within_error() for o in self.content[0]]): + if not all([o.is_zero_within_error(3) for o in self.content[0]]): warnings.warn("Correlator does not seem to be anti-symmetric around x0=0.", RuntimeWarning) newcontent = [self.content[0]]