summaryrefslogtreecommitdiff
path: root/lib/include/wolff/measurement.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/include/wolff/measurement.hpp')
-rw-r--r--lib/include/wolff/measurement.hpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/lib/include/wolff/measurement.hpp b/lib/include/wolff/measurement.hpp
deleted file mode 100644
index 6e352a5..0000000
--- a/lib/include/wolff/measurement.hpp
+++ /dev/null
@@ -1,28 +0,0 @@
-
-#ifndef WOLFF_MEASUREMENTS_H
-#define WOLFF_MEASUREMENTS_H
-
-#include "system.hpp"
-
-namespace wolff {
-
-template <class R_t, class X_t>
-class measurement {
- public:
- virtual void pre_cluster(N_t, N_t, const system<R_t, X_t>&, v_t, const R_t&) {};
-
- virtual void plain_bond_visited(const system<R_t, X_t>&, v_t, const X_t&, v_t, double) {};
- virtual void plain_site_transformed(const system<R_t, X_t>&, v_t, const X_t&) {};
-
-#ifndef WOLFF_NO_FIELD
- virtual void ghost_bond_visited(const system<R_t, X_t>&, v_t, const X_t&, const X_t&, double) {};
- virtual void ghost_site_transformed(const system<R_t, X_t>&, const R_t&) {};
-#endif
-
- virtual void post_cluster(N_t, N_t, const system<R_t, X_t>&) {};
-};
-
-}
-
-#endif
-