mirror of
https://github.com/fjosw/pyerrors.git
synced 2025-05-16 20:43:41 +02:00
Merge branch 'develop' into documentation
This commit is contained in:
commit
877e9128d7
1 changed files with 3 additions and 2 deletions
|
@ -457,9 +457,10 @@ class Corr:
|
||||||
T_partner = parity * partner.reverse()
|
T_partner = parity * partner.reverse()
|
||||||
|
|
||||||
t_slices = []
|
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:
|
if t_slice is not None:
|
||||||
t_slice.gamma_method()
|
|
||||||
if not t_slice[0].is_zero_within_error(5):
|
if not t_slice[0].is_zero_within_error(5):
|
||||||
t_slices.append(x0)
|
t_slices.append(x0)
|
||||||
if t_slices:
|
if t_slices:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue