diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2024-04-22 16:06:23 +0200 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2024-04-22 16:06:23 +0200 |
commit | 5a0d6d1ca19107883724cd19209027fb34724e6d (patch) | |
tree | aef76733a8f7327265b4fe1d17a36325eae13279 | |
parent | cb6c517995d88fc80713bb2b77698ab7ce209f3f (diff) | |
download | code-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.cpp | 7 |
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; |