diff options
Diffstat (limited to 'ising.hpp')
-rw-r--r-- | ising.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,5 @@ +#include "title.hpp" #include "smiley.hpp" #include "space_wolff.hpp" #include "torus_symmetries.hpp" @@ -41,7 +42,7 @@ std::function<double(const isingSpin&, const isingSpin&)> isingZ(unsigned L) { std::function<double(isingSpin)> 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]; }; } |