mirror of
https://github.com/fjosw/pyerrors.git
synced 2025-03-16 15:20:24 +01: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_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:
|
||||
|
|
Loading…
Add table
Reference in a new issue