summaryrefslogtreecommitdiff
path: root/lib/include/wolff/finite_states.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/include/wolff/finite_states.hpp')
-rw-r--r--lib/include/wolff/finite_states.hpp40
1 files changed, 40 insertions, 0 deletions
diff --git a/lib/include/wolff/finite_states.hpp b/lib/include/wolff/finite_states.hpp
new file mode 100644
index 0000000..426edad
--- /dev/null
+++ b/lib/include/wolff/finite_states.hpp
@@ -0,0 +1,40 @@
+
+#pragma once
+
+#include <cmath>
+#include <functional>
+#include <array>
+
+#define FINITE_STATES
+
+// must have N_STATES, states[N_STATES], and state_to_ind defined before
+// invoking header
+
+std::array<std::array<std::array<double, N_STATES>, N_STATES>, N_STATES> J_probs;
+#ifndef NOFIELD
+std::array<std::array<double, N_STATES>, N_STATES> H_probs;
+#endif
+
+template <class X_t>
+#ifndef NOFIELD
+void initialize_probs(std::function <double(X_t, X_t)> J, std::function <double(X_t)> H, double T) {
+ for (q_t i = 0; i < N_STATES; i++) {
+ for (q_t j = 0; j < N_STATES; j++) {
+ H_probs[i][j] = 1.0 - exp(-(H(states[i]) - H(states[j])) / T);
+ }
+ }
+#else
+void initialize_probs(std::function <double(X_t, X_t)> J, double T) {
+#endif
+ for (q_t i = 0; i < N_STATES; i++) {
+ for (q_t j = 0; j < N_STATES; j++) {
+ for (q_t k = 0; k < N_STATES; k++) {
+ J_probs[i][j][k] = 1.0 - exp(-(J(states[i], states[k]) - J(states[j], states[k])) / T);
+ }
+ }
+ }
+}
+
+
+
+