summaryrefslogtreecommitdiff
path: root/fits.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'fits.cpp')
-rw-r--r--fits.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/fits.cpp b/fits.cpp
new file mode 100644
index 0000000..a342791
--- /dev/null
+++ b/fits.cpp
@@ -0,0 +1,12 @@
+#include <getopt.h>
+#include <iomanip>
+
+#include "pcg-cpp/include/pcg_random.hpp"
+#include "randutils/randutils.hpp"
+
+#include "eigen/Eigen/Dense"
+
+using Rng = randutils::random_generator<pcg32>;
+
+using Real = double;
+using Vector = Eigen::Matrix<Real, Eigen::Dynamic, 1>;