From 8a6109a78a6f7b9e9585cd89e8a10d1f626b3af1 Mon Sep 17 00:00:00 2001 From: Jaron Kent-Dobias Date: Tue, 17 Jul 2018 22:37:57 -0400 Subject: made many changes to implement alternate reflection generators, this is broken --- lib/cluster.h | 60 +++++++---------------------------------------------------- 1 file changed, 7 insertions(+), 53 deletions(-) (limited to 'lib/cluster.h') diff --git a/lib/cluster.h b/lib/cluster.h index a20912e..ccd8725 100644 --- a/lib/cluster.h +++ b/lib/cluster.h @@ -13,6 +13,7 @@ #include #include +#include "state.h" #include "types.h" #include "rand.h" #include "stack.h" @@ -50,52 +51,6 @@ T add(T, T); template T subtract(T, T); -template -T gen_rot(gsl_rng *r); - -template -class state_t { - public: - D_t D; - L_t L; - v_t nv; - v_t ne; - graph_t *g; - double T; - X_t *spins; - R_t R; - double E; - X_t M; // the "sum" of the spins, like the total magnetization - - std::function J; - std::function H; - - state_t(D_t D, L_t L, double T, std::function J, std::function H) : D(D), L(L), T(T), J(J), H(H) { - graph_t *h = graph_create_square(D, L); - nv = h->nv; - ne = h->ne; - g = graph_add_ext(h); - graph_free(h); - spins = (X_t *)malloc(nv * sizeof(X_t)); - for (v_t i = 0; i < nv; i++) { - init (&(spins[i])); - } - init (&R); - E = - (double)ne * J(spins[0], spins[0]) - (double)nv * H(spins[0]); - M = scalar_multiple (nv, spins[0]); - } - - ~state_t() { - graph_free(g); - for (v_t i = 0; i < nv; i++) { - free_spin(spins[i]); - } - free(spins); - free_spin(R); - free_spin(M); - } -}; - template v_t flip_cluster(state_t *state, v_t v0, R_t r, gsl_rng *rand) { v_t nv = 0; @@ -103,7 +58,7 @@ v_t flip_cluster(state_t *state, v_t v0, R_t r, gsl_rng *rand) { ll_t *stack = NULL; // create a new stack stack_push(&stack, v0); // push the initial vertex to the stack - bool *marks = (bool *)calloc(state->g->nv, sizeof(bool)); + bool *marks = (bool *)calloc(state->nv, sizeof(bool)); while (stack != NULL) { v_t v = stack_pop(&stack); @@ -112,14 +67,13 @@ v_t flip_cluster(state_t *state, v_t v0, R_t r, gsl_rng *rand) { X_t si_old, si_new; R_t R_old, R_new; - si_old = state->spins[v]; - R_old = state->R; - marks[v] = true; - if (v == state->g->nv - 1) { + if (v == state->nv) { + R_old = state->R; R_new = act (r, R_old); } else { + si_old = state->spins[v]; si_new = act (r, si_old); } @@ -130,13 +84,13 @@ v_t flip_cluster(state_t *state, v_t v0, R_t r, gsl_rng *rand) { X_t sj; - if (vn != state->g->nv - 1) { + if (vn != state->nv) { sj = state->spins[vn]; } double prob; - bool is_ext = (v == state->g->nv - 1 || vn == state->g->nv - 1); + bool is_ext = (v == state->nv || vn == state->nv); if (is_ext) { X_t rs_old, rs_new; -- cgit v1.2.3-70-g09d2