summaryrefslogtreecommitdiff
path: root/hadamard_mcmc.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'hadamard_mcmc.hpp')
-rw-r--r--hadamard_mcmc.hpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/hadamard_mcmc.hpp b/hadamard_mcmc.hpp
index c9fa2da..145454b 100644
--- a/hadamard_mcmc.hpp
+++ b/hadamard_mcmc.hpp
@@ -153,17 +153,13 @@ private:
double θ0;
public:
- const double β;
+ double β;
double E;
Orthogonal M;
- unsigned tag;
- color c;
- MCMC(unsigned n, double β0, Measurement& A, unsigned tag = 0) : A(A), M(n), β(β0) {
+ MCMC(unsigned n, double β0, Measurement& A) : A(A), M(n), β(β0) {
θ0 = M_PI;
E = M.energy();
- tag = tag;
- c = none;
}
bool step(Givens& g, bool dry = false) {