From 49af3a93ca030c151a78ed65cd32ee82969861cf Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Thu, 18 Nov 2021 12:45:19 +0000 Subject: [PATCH] fix: gamma_method call removed from read_Bilinear_hd5 --- pyerrors/input/hadrons.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pyerrors/input/hadrons.py b/pyerrors/input/hadrons.py index 5f3d2646..1fa1b64d 100644 --- a/pyerrors/input/hadrons.py +++ b/pyerrors/input/hadrons.py @@ -176,7 +176,6 @@ def read_Bilinear_hd5(path, filestem, ens_id, order='F'): real = Obs([rolled_array[si, sj, ci, cj].real], [ens_id], idl=[cnfg_numbers]) imag = Obs([rolled_array[si, sj, ci, cj].imag], [ens_id], idl=[cnfg_numbers]) matrix[si, sj, ci, cj] = CObs(real, imag) - matrix[si, sj, ci, cj].gamma_method() result_dict[key] = Npr_matrix(matrix.swapaxes(1, 2).reshape((12, 12), order=order), mom_in=mom_in, mom_out=mom_out)