diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2021-01-05 12:06:11 +0100 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2021-01-05 12:06:11 +0100 |
commit | 7a9c6151dc3ab322b4db545291597d4bd48b9426 (patch) | |
tree | 436a3c68ecea081d71831af0e781f2ac64358b34 | |
parent | 21a40622a0f542a7cf6ae695f2230205ecc3f445 (diff) | |
download | code-7a9c6151dc3ab322b4db545291597d4bd48b9426.tar.gz code-7a9c6151dc3ab322b4db545291597d4bd48b9426.tar.bz2 code-7a9c6151dc3ab322b4db545291597d4bd48b9426.zip |
Sorted includes differently.
-rw-r--r-- | tensor.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2,9 +2,10 @@ #include <algorithm> #include <array> -#include <eigen3/unsupported/Eigen/CXX11/Tensor> #include <utility> +#include <eigen3/unsupported/Eigen/CXX11/Tensor> + #include "factorial.hpp" template <class Scalar, unsigned p, std::size_t... Indices> |