summaryrefslogtreecommitdiff
path: root/matrix.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'matrix.hpp')
-rw-r--r--matrix.hpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/matrix.hpp b/matrix.hpp
new file mode 100644
index 0000000..96b63fb
--- /dev/null
+++ b/matrix.hpp
@@ -0,0 +1,7 @@
+
+#pragma once
+
+#include <eigen3/Eigen/Dense>
+
+template <class T, int D> using Matrix = Eigen::Matrix<T, D, D>;
+