From 210953f09b2d7c65a6c3a0e743c6abb118823f63 Mon Sep 17 00:00:00 2001 From: Daniel Knuettel Date: Mon, 19 Jun 2023 14:30:16 +0200 Subject: [PATCH] Update su2_heat_bath.py: added DOI of reference --- lib/gpt/algorithms/markov/su2_heat_bath.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/gpt/algorithms/markov/su2_heat_bath.py b/lib/gpt/algorithms/markov/su2_heat_bath.py index 69113327d..8a113fe3b 100644 --- a/lib/gpt/algorithms/markov/su2_heat_bath.py +++ b/lib/gpt/algorithms/markov/su2_heat_bath.py @@ -20,13 +20,16 @@ # # P(U) = e^{ Re Tr adj(staple) U } dU # -# based on 1985 Kennedy and Pendleton paper (PLB 156 p393-399) +# based on 1985 Kennedy and Pendleton paper (https://doi.org/10.1016/0370-2693(85)91632-6) import gpt as g import numpy as np import sys class su2_heat_bath: + """ + Based on https://doi.org/10.1016/0370-2693(85)91632-6. + """ @g.params_convention(project_method="defect", niter=20) def __init__(self, rng, params): self.rng = rng