From 99afa0f6771be13f0000fdaaed7807faa53b4508 Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Mon, 24 Jan 2022 10:12:22 +0000 Subject: [PATCH] fix: bug in boot matmul fixed --- pyerrors/linalg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyerrors/linalg.py b/pyerrors/linalg.py index 8b93844e..a7476e33 100644 --- a/pyerrors/linalg.py +++ b/pyerrors/linalg.py @@ -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):