diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2021-01-05 11:16:04 +0100 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2021-01-05 11:16:04 +0100 |
commit | 40499ac858485c63b64b0ecaa892b10b62dbe8a7 (patch) | |
tree | 750ee4fe09828a9cf442f7deb2ffeac0427c6c08 | |
parent | 3541fa50708470789592ce9ac1f3baf1ee35943f (diff) | |
download | code-40499ac858485c63b64b0ecaa892b10b62dbe8a7.tar.gz code-40499ac858485c63b64b0ecaa892b10b62dbe8a7.tar.bz2 code-40499ac858485c63b64b0ecaa892b10b62dbe8a7.zip |
Removed uncessesary includes.
-rw-r--r-- | langevin.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/langevin.cpp b/langevin.cpp index 6f26278..dcf8c68 100644 --- a/langevin.cpp +++ b/langevin.cpp @@ -1,15 +1,11 @@ -#include <algorithm> #include <getopt.h> #include <cstdlib> #include <random> #include <complex> -#include <array> #include <functional> -#include <list> -#include <eigen3/unsupported/Eigen/CXX11/Tensor> #include <eigen3/Eigen/Core> -#include <eigen3/Eigen/Cholesky> +#include <eigen3/unsupported/Eigen/CXX11/Tensor> #include "pcg-cpp/include/pcg_random.hpp" #include "randutils/randutils.hpp" |