diff --git a/pyerrors/obs.py b/pyerrors/obs.py index 2439bc03..0b46537c 100644 --- a/pyerrors/obs.py +++ b/pyerrors/obs.py @@ -443,7 +443,7 @@ class Obs: """ return self.is_zero() or np.abs(self.value) <= sigma * self._dvalue - def is_zero(self, rtol=1.e-5, atol=1.e-8): + def is_zero(self, rtol=1e-14, atol=1e-10): """Checks whether the observable is zero within a given tolerance. Parameters