summaryrefslogtreecommitdiff
path: root/examples/src/models/ising/z2.hpp
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2018-10-17 19:33:25 -0400
committerJaron Kent-Dobias <jaron@kent-dobias.com>2018-10-17 19:33:25 -0400
commitf2f7a072216dfafab89851e4ff3e0b2c3eb16663 (patch)
treef9c7e1e4e91ce8b0ec9cef9f2423029fe7b7f049 /examples/src/models/ising/z2.hpp
parent1343a3fe6bd17a2487f12a0d61be8dc83cd722a0 (diff)
downloadc++-f2f7a072216dfafab89851e4ff3e0b2c3eb16663.tar.gz
c++-f2f7a072216dfafab89851e4ff3e0b2c3eb16663.tar.bz2
c++-f2f7a072216dfafab89851e4ff3e0b2c3eb16663.zip
removed a lot of research code to simplify library and examples for publication
Diffstat (limited to 'examples/src/models/ising/z2.hpp')
-rw-r--r--examples/src/models/ising/z2.hpp53
1 files changed, 0 insertions, 53 deletions
diff --git a/examples/src/models/ising/z2.hpp b/examples/src/models/ising/z2.hpp
deleted file mode 100644
index 19b6c05..0000000
--- a/examples/src/models/ising/z2.hpp
+++ /dev/null
@@ -1,53 +0,0 @@
-
-#pragma once
-
-#include <wolff/types.h>
-#include "ising.hpp"
-
-/* The minimum definition for a group type R_t to act on a spin type X_t is
- * given by the following.
- *
- * void init(R_t *p);
- * void free_spin(R_t r);
- * R_t copy(R_t r);
- * X_t act(R_t r, X_t x);
- * R_t act(R_t r, R_t r);
- * X_t act_inverse(R_t r, X_t x);
- * R_t act_inverse(R_t r, R_t r);
- *
- */
-
-class z2_t {
- public:
- bool x;
-
- z2_t() : x(false) {}
-
- z2_t(bool x) : x(x) {}
-
- ising_t act(const ising_t& s) const {
- if (x) {
- return ising_t(!s.x);
- } else {
- return ising_t(s.x);
- }
- }
-
- z2_t act(const z2_t& r) const {
- if (x) {
- return z2_t(!r.x);
- } else {
- return z2_t(r.x);
- }
- }
-
- ising_t act_inverse(const ising_t& s) const {
- return this->act(s);
- }
-
- z2_t act_inverse(const z2_t& r) const {
- return this->act(r);
- }
-};
-
-