repr and print of correlator class altered

This commit is contained in:
Fabian Joswig 2021-09-27 16:39:33 +01:00
parent 12469e304b
commit 7886201983
2 changed files with 24 additions and 6 deletions

View file

@ -555,8 +555,8 @@ class Obs:
return np.array([self / o for o in y])
elif(y.__class__.__name__=="Corr"):
return NotImplemented
return NotImplemented
else:
return derived_observable(lambda x, **kwargs: x[0] / y, [self], man_grad=[1 / y])