diff options
Diffstat (limited to 'fits.cpp')
-rw-r--r-- | fits.cpp | 12 |
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>; |