summaryrefslogtreecommitdiff
path: root/lib/include/wolff.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/include/wolff.hpp')
-rw-r--r--lib/include/wolff.hpp32
1 files changed, 0 insertions, 32 deletions
diff --git a/lib/include/wolff.hpp b/lib/include/wolff.hpp
deleted file mode 100644
index 7e909c8..0000000
--- a/lib/include/wolff.hpp
+++ /dev/null
@@ -1,32 +0,0 @@
-
-#ifndef WOLFF_H
-#define WOLFF_H
-
-#include "wolff/cluster.hpp"
-#include "wolff/measurement.hpp"
-
-namespace wolff{
-
-template <class R_t, class X_t>
-void system<R_t, X_t>::run_wolff(N_t N,
- std::function <R_t(std::mt19937&, const system<R_t, X_t>&, v_t)> r_gen,
- measurement<R_t, X_t>& A, std::mt19937& rng) {
-
- std::uniform_int_distribution<v_t> dist(0, nv - 1);
-
- for (N_t n = 0; n < N; n++) {
- v_t i0 = dist(rng);
- R_t r = r_gen(rng, *this, i0);
-
- A.pre_cluster(n, N, *this, i0, r);
-
- this->flip_cluster(i0, r, rng, A);
-
- A.post_cluster(n, N, *this);
- }
-}
-
-}
-
-#endif
-