From 452600249b16eb1239931b49f3d0fa795a611f5a Mon Sep 17 00:00:00 2001 From: Jaron Kent-Dobias Date: Fri, 14 Feb 2020 07:44:50 -0500 Subject: Broken: attempt to implement dynamic matching of pair-flipped spheres. --- space_wolff.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'space_wolff.hpp') diff --git a/space_wolff.hpp b/space_wolff.hpp index 9d529a3..141396a 100644 --- a/space_wolff.hpp +++ b/space_wolff.hpp @@ -62,7 +62,7 @@ public: for (Spin* s : t->toConsider()) { double ΔE = t->ΔE(s); if (ΔE > 0 && 1.0 - exp(-ΔE / T) > rng.uniform(0, 1)) { - queue.push(t->createNew(s)); + queue.push(t->createNew(T, visited, s, rng)); } } -- cgit v1.2.3-54-g00ecf