From f9ecd260383f9305c9eee03107e0b0a0edbaa9e3 Mon Sep 17 00:00:00 2001 From: fjosw Date: Tue, 15 Feb 2022 17:05:42 +0000 Subject: [PATCH] Documentation updated --- docs/pyerrors/correlators.html | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) 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: