summaryrefslogtreecommitdiff
path: root/examples/ising_animation.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_animation.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_animation.cpp')
-rw-r--r--examples/ising_animation.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/examples/ising_animation.cpp b/examples/ising_animation.cpp
index ab10585..7bafcf8 100644
--- a/examples/ising_animation.cpp
+++ b/examples/ising_animation.cpp
@@ -43,10 +43,6 @@ class draw_ising : public measurement<ising_t, ising_t> {
C = 0;
}
- void plain_bond_visited(const system<ising_t, ising_t>&, v_t, const ising_t&, v_t, double dE) {}
-
- void ghost_bond_visited(const system<ising_t, ising_t>&, v_t, const ising_t& s_old, const ising_t& s_new, double dE) {}
-
void plain_site_transformed(const system<ising_t, ising_t>& S, v_t i, const ising_t&) {
glColor3f(1.0, 0.0, 0.0);
glRecti(i / S.G.L, i % S.G.L, (i / S.G.L) + 1, (i % S.G.L) + 1);
@@ -55,10 +51,6 @@ class draw_ising : public measurement<ising_t, ising_t> {
glFlush();
}
}
-
- 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>&) {}
};
int main(int argc, char *argv[]) {