summaryrefslogtreecommitdiff
path: root/lib/wolff.h
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2018-03-01 01:43:33 -0500
committerJaron Kent-Dobias <jaron@kent-dobias.com>2018-03-01 01:43:33 -0500
commitc960d23a9e147c2043df852460427b95bf752583 (patch)
tree9df6d14cfff1ec1c7f09535f827463601ac7d467 /lib/wolff.h
parent4e643b30203b9d8af792c109498ecd70f873d584 (diff)
downloadc++-c960d23a9e147c2043df852460427b95bf752583.tar.gz
c++-c960d23a9e147c2043df852460427b95bf752583.tar.bz2
c++-c960d23a9e147c2043df852460427b95bf752583.zip
more cosmetic changes
Diffstat (limited to 'lib/wolff.h')
-rw-r--r--lib/wolff.h58
1 files changed, 0 insertions, 58 deletions
diff --git a/lib/wolff.h b/lib/wolff.h
deleted file mode 100644
index 18ae6dd..0000000
--- a/lib/wolff.h
+++ /dev/null
@@ -1,58 +0,0 @@
-
-#pragma once
-
-#include <assert.h>
-#include <fftw3.h>
-#include <float.h>
-#include <getopt.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 "orthogonal.h"
-#include "dihedral.h"
-
-typedef struct {
- graph_t *g;
- q_t *spins;
- double T;
- double *J;
- double *H;
- double *J_probs;
- double *H_probs;
- dihedral_t *R;
- double E;
- v_t *M;
- q_t q;
-} ising_state_t;
-
-typedef struct {
- graph_t *g;
- double *spins;
- double T;
- double (*J)(double);
- double (*H)(q_t, double *, double *);
- double *H_info;
- double *R;
- double E;
- double *M;
- q_t n;
-} vector_state_t;
-
-v_t flip_cluster(ising_state_t *s, v_t v0, q_t s1, gsl_rng *r);
-
-v_t flip_cluster_vector(vector_state_t *s, v_t v0, double *rot, gsl_rng *r);
-
-graph_t *graph_add_ext(const graph_t *g);
-