fix: bug in boot matmul fixed

This commit is contained in:
Fabian Joswig 2022-01-24 10:12:22 +00:00
parent 92d3e3d882
commit 99afa0f677

View file

@ -240,7 +240,7 @@ def boot_matmul(a, b):
def export_boot(obs):
ret = np.zeros(obs.N + 1)
ret[0] = obs.value
ret[1:] = proj @ obs.deltas[name]
ret[1:] = proj @ (obs.deltas[name] + obs.r_values[name])
return ret
def import_boot(boots):