summaryrefslogtreecommitdiff
path: root/lib/cluster_finite.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/cluster_finite.h')
-rw-r--r--lib/cluster_finite.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/lib/cluster_finite.h b/lib/cluster_finite.h
new file mode 100644
index 0000000..abdc8fc
--- /dev/null
+++ b/lib/cluster_finite.h
@@ -0,0 +1,42 @@
+
+#pragma once
+
+#include <assert.h>
+#include <fftw3.h>
+#include <float.h>
+#include <gsl/gsl_randist.h>
+#include <gsl/gsl_rng.h>
+#include <inttypes.h>
+#include <math.h>
+#include <stdbool.h>
+#include <string.h>
+#include <sys/types.h>
+
+#include "types.h"
+#include "rand.h"
+#include "stack.h"
+#include "convex.h"
+#include "graph.h"
+#include "tree.h"
+#include "measurement.h"
+#include "symmetric.h"
+#include "yule_walker.h"
+
+typedef struct {
+ graph_t *g;
+ q_t q;
+ R_t n_transformations;
+ q_t *transformations;
+ double T;
+ double *J;
+ double *H;
+ double *J_probs;
+ double *H_probs;
+ q_t *spins;
+ q_t *R;
+ double E;
+ v_t *M;
+} state_finite_t;
+
+v_t flip_cluster_finite(state_finite_t *s, v_t v0, q_t rot, gsl_rng *r);
+