From 04fe2bd80cc216fa560a24456791e3ed90d77007 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Joan=20Sol=C3=A0?= <jsola@iri.upc.edu>
Date: Sat, 7 Dec 2019 13:26:16 +0100
Subject: [PATCH] Update wolf.h

---
 include/core/common/wolf.h | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/include/core/common/wolf.h b/include/core/common/wolf.h
index 42f8fcb32..c3c01ee3d 100644
--- a/include/core/common/wolf.h
+++ b/include/core/common/wolf.h
@@ -84,14 +84,14 @@ namespace Eigen  // Eigen namespace extension
 // 1. Vectors and Matrices
 typedef Matrix<double, 1, 1, RowMajor> Matrix1d;      ///< 2x2 matrix of real double type
 typedef Matrix<double, 6, 6, RowMajor> Matrix6d;      ///< 6x6 matrix of real double type
-//typedef Matrix<double, 7, 7, RowMajor> Matrix7d;      ///< 7x7 matrix of real double type
+typedef Matrix<double, 7, 7, RowMajor> Matrix7d;      ///< 7x7 matrix of real double type
 typedef Matrix<double, 1, 1> Vector1d;                ///< 1-vector of real double type
-//typedef Matrix<double, 5, 1> Vector5d;                ///< 5-vector of real double type
+typedef Matrix<double, 5, 1> Vector5d;                ///< 5-vector of real double type
 typedef Matrix<double, 6, 1> Vector6d;                ///< 6-vector of real double type
 typedef Matrix<double, 7, 1> Vector7d;                ///< 7-vector of real double type
-//typedef Matrix<double, 8, 1> Vector8d;                ///< 8-vector of real double type
-//typedef Matrix<double, 9, 1> Vector9d;                ///< 9-vector of real double type
-//typedef Matrix<double, 10, 1> Vector10d;              ///< 10-vector of real double type
+typedef Matrix<double, 8, 1> Vector8d;                ///< 8-vector of real double type
+typedef Matrix<double, 9, 1> Vector9d;                ///< 9-vector of real double type
+typedef Matrix<double, 10, 1> Vector10d;              ///< 10-vector of real double type
 
 // 2. Sparse matrix
 typedef SparseMatrix<double, RowMajor, int> SparseMatrixd;
-- 
GitLab