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