diff --git a/docs/pyerrors/correlators.html b/docs/pyerrors/correlators.html index 5cdf0f33..402c3b17 100644 --- a/docs/pyerrors/correlators.html +++ b/docs/pyerrors/correlators.html @@ -666,9 +666,10 @@ T_partner = parity * partner.reverse() t_slices = [] - for x0, t_slice in enumerate((self - T_partner).content): + test = (self - T_partner) + test.gamma_method() + for x0, t_slice in enumerate(test): if t_slice is not None: - t_slice.gamma_method() if not t_slice[0].is_zero_within_error(5): t_slices.append(x0) if t_slices: @@ -1754,9 +1755,10 @@ T_partner = parity * partner.reverse() t_slices = [] - for x0, t_slice in enumerate((self - T_partner).content): + test = (self - T_partner) + test.gamma_method() + for x0, t_slice in enumerate(test): if t_slice is not None: - t_slice.gamma_method() if not t_slice[0].is_zero_within_error(5): t_slices.append(x0) if t_slices: @@ -3166,9 +3168,10 @@ on the configurations in obs[i].idl. T_partner = parity * partner.reverse() t_slices = [] - for x0, t_slice in enumerate((self - T_partner).content): + test = (self - T_partner) + test.gamma_method() + for x0, t_slice in enumerate(test): if t_slice is not None: - t_slice.gamma_method() if not t_slice[0].is_zero_within_error(5): t_slices.append(x0) if t_slices: