From 8754f9660c3e9f670a660a7c24fbcae9205e5730 Mon Sep 17 00:00:00 2001 From: fjosw Date: Mon, 8 Nov 2021 10:06:58 +0000 Subject: [PATCH] Documentation updated --- docs/pyerrors/correlators.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/pyerrors/correlators.html b/docs/pyerrors/correlators.html index 08b87efb..5d957b1e 100644 --- a/docs/pyerrors/correlators.html +++ b/docs/pyerrors/correlators.html @@ -368,7 +368,7 @@ 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]] @@ -1167,7 +1167,7 @@ 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]] @@ -2065,7 +2065,7 @@ timeslice and the error on each timeslice.

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]]