summaryrefslogtreecommitdiff
path: root/src/wolff_ising.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/wolff_ising.cpp')
-rw-r--r--src/wolff_ising.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/wolff_ising.cpp b/src/wolff_ising.cpp
index 9866248..f614707 100644
--- a/src/wolff_ising.cpp
+++ b/src/wolff_ising.cpp
@@ -8,6 +8,11 @@
#include <z2.h>
#include <ising.h>
+#define N_STATES 2
+const ising_t states[N_STATES] = {false, true};
+q_t state_to_ind(ising_t state) { return (q_t)state.x; }
+#include <finite_states.h>
+
// include wolff.h
#include <rand.h>
#include <wolff.h>