summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2018-07-23 14:16:06 -0400
committerJaron Kent-Dobias <jaron@kent-dobias.com>2018-07-23 14:16:06 -0400
commit3a463fbcaf3f6a3317ee1bc7393e5b8d1d55583a (patch)
tree6a1d168f571ac161af6d17ff340af58551266198 /lib
parente44e2da31a4240600590eb9a564db0e0e586cba1 (diff)
downloadc++-3a463fbcaf3f6a3317ee1bc7393e5b8d1d55583a.tar.gz
c++-3a463fbcaf3f6a3317ee1bc7393e5b8d1d55583a.tar.bz2
c++-3a463fbcaf3f6a3317ee1bc7393e5b8d1d55583a.zip
removed many unnecessary includes
Diffstat (limited to 'lib')
-rw-r--r--lib/cluster.h19
1 files changed, 1 insertions, 18 deletions
diff --git a/lib/cluster.h b/lib/cluster.h
index cc2dc70..5124061 100644
--- a/lib/cluster.h
+++ b/lib/cluster.h
@@ -1,31 +1,14 @@
#pragma once
-#include <functional>
-#include <assert.h>
-#include <fftw3.h>
-#include <float.h>
#include <gsl/gsl_randist.h>
#include <gsl/gsl_rng.h>
-#include <inttypes.h>
#include <cmath>
-#include <stdbool.h>
-#include <string.h>
-#include <sys/types.h>
-#include "state.h"
#include "types.h"
-#include "rand.h"
+#include "state.h"
#include "stack.h"
-#include "convex.h"
#include "graph.h"
-#include "tree.h"
-#include "measurement.h"
-#include "vector.h"
-#include "orthogonal.h"
-#include "dihedral.h"
-#include "dihinf.h"
-#include "yule_walker.h"
template <class R_t, class X_t>
void flip_cluster(state_t <R_t, X_t> *state, v_t v0, R_t r, gsl_rng *rand) {