From ac6b711bec28eeac0daf9eb24bad20ef3ee7b3e9 Mon Sep 17 00:00:00 2001
From: fjosw
Date: Tue, 3 May 2022 09:49:46 +0000
Subject: [PATCH] Documentation updated
---
docs/pyerrors/correlators.html | 60 +++++++++++++++++-----------------
1 file changed, 30 insertions(+), 30 deletions(-)
diff --git a/docs/pyerrors/correlators.html b/docs/pyerrors/correlators.html
index 15aec287..3ee8379c 100644
--- a/docs/pyerrors/correlators.html
+++ b/docs/pyerrors/correlators.html
@@ -471,16 +471,16 @@
258 "Eigenvector" - Use the method described in arXiv:2004.10472 [hep-lat] to find the set of v(t) belonging to the state.
259 The reference state is identified by its eigenvalue at t=ts
260 """
- 261 if sorted_list is None:
- 262 if (ts is None):
- 263 raise Exception("ts is required if sorted_list=None")
- 264 if (self.content[t0] is None) or (self.content[ts] is None):
- 265 raise Exception("Corr not defined at t0/ts")
- 266 G0, Gt = np.empty([self.N, self.N], dtype="double"), np.empty([self.N, self.N], dtype="double")
- 267 symmetric_corr = self.matrix_symmetric()
+ 261 symmetric_corr = self.matrix_symmetric()
+ 262 if sorted_list is None:
+ 263 if (ts is None):
+ 264 raise Exception("ts is required if sorted_list=None")
+ 265 if (self.content[t0] is None) or (self.content[ts] is None):
+ 266 raise Exception("Corr not defined at t0/ts")
+ 267 G0, Gt = np.empty([self.N, self.N], dtype="double"), np.empty([self.N, self.N], dtype="double")
268 for i in range(self.N):
269 for j in range(self.N):
- 270 G0[i, j] = symmetric_corr.content[t0][i, j].value
+ 270 G0[i, j] = symmetric_corr[t0][i, j].value
271 Gt[i, j] = symmetric_corr[ts][i, j].value
272
273 sp_vecs = _GEVP_solver(Gt, G0)
@@ -493,8 +493,8 @@
280 G0, Gt = np.empty([self.N, self.N], dtype="double"), np.empty([self.N, self.N], dtype="double")
281 for i in range(self.N):
282 for j in range(self.N):
- 283 G0[i, j] = self.content[t0][i, j].value
- 284 Gt[i, j] = self.content[t][i, j].value
+ 283 G0[i, j] = symmetric_corr[t0][i, j].value
+ 284 Gt[i, j] = symmetric_corr[t][i, j].value
285
286 sp_vecs = _GEVP_solver(Gt, G0)
287 if sorted_list == "Eigenvalue":
@@ -1693,16 +1693,16 @@
259 "Eigenvector" - Use the method described in arXiv:2004.10472 [hep-lat] to find the set of v(t) belonging to the state.
260 The reference state is identified by its eigenvalue at t=ts
261 """
- 262 if sorted_list is None:
- 263 if (ts is None):
- 264 raise Exception("ts is required if sorted_list=None")
- 265 if (self.content[t0] is None) or (self.content[ts] is None):
- 266 raise Exception("Corr not defined at t0/ts")
- 267 G0, Gt = np.empty([self.N, self.N], dtype="double"), np.empty([self.N, self.N], dtype="double")
- 268 symmetric_corr = self.matrix_symmetric()
+ 262 symmetric_corr = self.matrix_symmetric()
+ 263 if sorted_list is None:
+ 264 if (ts is None):
+ 265 raise Exception("ts is required if sorted_list=None")
+ 266 if (self.content[t0] is None) or (self.content[ts] is None):
+ 267 raise Exception("Corr not defined at t0/ts")
+ 268 G0, Gt = np.empty([self.N, self.N], dtype="double"), np.empty([self.N, self.N], dtype="double")
269 for i in range(self.N):
270 for j in range(self.N):
- 271 G0[i, j] = symmetric_corr.content[t0][i, j].value
+ 271 G0[i, j] = symmetric_corr[t0][i, j].value
272 Gt[i, j] = symmetric_corr[ts][i, j].value
273
274 sp_vecs = _GEVP_solver(Gt, G0)
@@ -1715,8 +1715,8 @@
281 G0, Gt = np.empty([self.N, self.N], dtype="double"), np.empty([self.N, self.N], dtype="double")
282 for i in range(self.N):
283 for j in range(self.N):
- 284 G0[i, j] = self.content[t0][i, j].value
- 285 Gt[i, j] = self.content[t][i, j].value
+ 284 G0[i, j] = symmetric_corr[t0][i, j].value
+ 285 Gt[i, j] = symmetric_corr[t][i, j].value
286
287 sp_vecs = _GEVP_solver(Gt, G0)
288 if sorted_list == "Eigenvalue":
@@ -3042,16 +3042,16 @@ timeslice and the error on each timeslice.
259 "Eigenvector" - Use the method described in arXiv:2004.10472 [hep-lat] to find the set of v(t) belonging to the state.
260 The reference state is identified by its eigenvalue at t=ts
261 """
-262 if sorted_list is None:
-263 if (ts is None):
-264 raise Exception("ts is required if sorted_list=None")
-265 if (self.content[t0] is None) or (self.content[ts] is None):
-266 raise Exception("Corr not defined at t0/ts")
-267 G0, Gt = np.empty([self.N, self.N], dtype="double"), np.empty([self.N, self.N], dtype="double")
-268 symmetric_corr = self.matrix_symmetric()
+262 symmetric_corr = self.matrix_symmetric()
+263 if sorted_list is None:
+264 if (ts is None):
+265 raise Exception("ts is required if sorted_list=None")
+266 if (self.content[t0] is None) or (self.content[ts] is None):
+267 raise Exception("Corr not defined at t0/ts")
+268 G0, Gt = np.empty([self.N, self.N], dtype="double"), np.empty([self.N, self.N], dtype="double")
269 for i in range(self.N):
270 for j in range(self.N):
-271 G0[i, j] = symmetric_corr.content[t0][i, j].value
+271 G0[i, j] = symmetric_corr[t0][i, j].value
272 Gt[i, j] = symmetric_corr[ts][i, j].value
273
274 sp_vecs = _GEVP_solver(Gt, G0)
@@ -3064,8 +3064,8 @@ timeslice and the error on each timeslice.
281 G0, Gt = np.empty([self.N, self.N], dtype="double"), np.empty([self.N, self.N], dtype="double")
282 for i in range(self.N):
283 for j in range(self.N):
-284 G0[i, j] = self.content[t0][i, j].value
-285 Gt[i, j] = self.content[t][i, j].value
+284 G0[i, j] = symmetric_corr[t0][i, j].value
+285 Gt[i, j] = symmetric_corr[t][i, j].value
286
287 sp_vecs = _GEVP_solver(Gt, G0)
288 if sorted_list == "Eigenvalue":