summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2024-04-22 16:06:23 +0200
committerJaron Kent-Dobias <jaron@kent-dobias.com>2024-04-22 16:06:23 +0200
commit5a0d6d1ca19107883724cd19209027fb34724e6d (patch)
treeaef76733a8f7327265b4fe1d17a36325eae13279
parentcb6c517995d88fc80713bb2b77698ab7ce209f3f (diff)
downloadcode-5a0d6d1ca19107883724cd19209027fb34724e6d.tar.gz
code-5a0d6d1ca19107883724cd19209027fb34724e6d.tar.bz2
code-5a0d6d1ca19107883724cd19209027fb34724e6d.zip
Changed header files in executable to use submodule version of eigen.
-rw-r--r--least_squares.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/least_squares.cpp b/least_squares.cpp
index 125557e..58dab69 100644
--- a/least_squares.cpp
+++ b/least_squares.cpp
@@ -1,12 +1,13 @@
-#include <eigen3/Eigen/Dense>
-#include <eigen3/unsupported/Eigen/CXX11/Tensor>
-#include <eigen3/unsupported/Eigen/CXX11/TensorSymmetry>
#include <getopt.h>
#include <iomanip>
#include "pcg-cpp/include/pcg_random.hpp"
#include "randutils/randutils.hpp"
+#include "eigen/Eigen/Dense"
+#include "eigen/unsupported/Eigen/CXX11/Tensor"
+#include "eigen/unsupported/Eigen/CXX11/TensorSymmetry"
+
using Rng = randutils::random_generator<pcg32>;
using Real = double;