From 4740abed9fcd40359a9ced3a97ac1b9f56e379a0 Mon Sep 17 00:00:00 2001 From: Jaron Kent-Dobias Date: Mon, 20 Jul 2020 13:35:48 -0400 Subject: Thesis work. --- ising.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ising.hpp') diff --git a/ising.hpp b/ising.hpp index a97da26..eb733aa 100644 --- a/ising.hpp +++ b/ising.hpp @@ -1,4 +1,5 @@ +#include "title.hpp" #include "smiley.hpp" #include "space_wolff.hpp" #include "torus_symmetries.hpp" @@ -41,7 +42,7 @@ std::function isingZ(unsigned L) { std::function isingBFace(unsigned L, double H) { return [L, H](const isingSpin& s) -> double { - return H * s.s * smiley[15 - s.x(1) * 16 / L][s.x(0) * 16 / L]; + return H * s.s * phenomena[511 - s.x(1) * 512 / L][s.x(0) * 512 / L]; }; } -- cgit v1.2.3-54-g00ecf