diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2018-10-21 22:59:02 -0400 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2018-10-21 22:59:02 -0400 |
commit | bc04424456379aa753d31fbf63ffd8b9bcb6f7e3 (patch) | |
tree | 73bca628a9180ef6c784f0556d6af499a206e4d6 | |
parent | d2ca0192615590886a5b044f4b8aa7417701a93f (diff) | |
download | PRE_98_063306-bc04424456379aa753d31fbf63ffd8b9bcb6f7e3.tar.gz PRE_98_063306-bc04424456379aa753d31fbf63ffd8b9bcb6f7e3.tar.bz2 PRE_98_063306-bc04424456379aa753d31fbf63ffd8b9bcb6f7e3.zip |
newest version of the ising example
-rw-r--r-- | ising_standalone.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/ising_standalone.cpp b/ising_standalone.cpp index 14c39e7..40572fd 100644 --- a/ising_standalone.cpp +++ b/ising_standalone.cpp @@ -32,14 +32,8 @@ class measure_clusters : public measurement<ising_t, ising_t> { void pre_cluster(N_t, N_t, const system<ising_t, ising_t>&, v_t, const ising_t&) { C = 0; } - void plain_bond_visited(const system<ising_t, ising_t>&, v_t, const ising_t&, v_t, double) {} - - void ghost_bond_visited(const system<ising_t, ising_t>&, v_t, const ising_t&, const ising_t&, double) {} - void plain_site_transformed(const system<ising_t, ising_t>&, v_t, const ising_t&) { C++; } - void ghost_site_transformed(const system<ising_t, ising_t>&, const ising_t&) {} - void post_cluster(N_t, N_t, const system<ising_t, ising_t>&) { Ctotal += C; } }; |