summaryrefslogtreecommitdiff
path: root/examples/ising_standalone.cpp
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2018-10-21 00:39:34 -0400
committerJaron Kent-Dobias <jaron@kent-dobias.com>2018-10-21 00:39:34 -0400
commit44b83cecee297360d18ef3cf96bf0e2a41c699af (patch)
tree0fde9456e726156a659400b7591fd1401643fbe7 /examples/ising_standalone.cpp
parenta57928e1ef11d54a3e8b6b6de42013952b1cbf8e (diff)
downloadc++-44b83cecee297360d18ef3cf96bf0e2a41c699af.tar.gz
c++-44b83cecee297360d18ef3cf96bf0e2a41c699af.tar.bz2
c++-44b83cecee297360d18ef3cf96bf0e2a41c699af.zip
measurement virtual hooks now defined to be trivial by default
Diffstat (limited to 'examples/ising_standalone.cpp')
-rw-r--r--examples/ising_standalone.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/examples/ising_standalone.cpp b/examples/ising_standalone.cpp
index 14c39e7..40572fd 100644
--- a/examples/ising_standalone.cpp
+++ b/examples/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; }
};