From f1679c7185471289afaf702a45e336849d20a81a Mon Sep 17 00:00:00 2001 From: Hauke Heibel Date: Sun, 20 Jun 2010 17:37:56 +0200 Subject: Utilize Index in all unit tests. --- test/permutationmatrices.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'test/permutationmatrices.cpp') diff --git a/test/permutationmatrices.cpp b/test/permutationmatrices.cpp index 89142d910..d3cdfeca0 100644 --- a/test/permutationmatrices.cpp +++ b/test/permutationmatrices.cpp @@ -43,6 +43,7 @@ void randomPermutationVector(PermutationVectorType& v, int size) using namespace std; template void permutationmatrices(const MatrixType& m) { + typedef typename MatrixType::Index Index; typedef typename MatrixType::Scalar Scalar; typedef typename MatrixType::RealScalar RealScalar; enum { Rows = MatrixType::RowsAtCompileTime, Cols = MatrixType::ColsAtCompileTime, @@ -52,8 +53,8 @@ template void permutationmatrices(const MatrixType& m) typedef PermutationMatrix RightPermutationType; typedef Matrix RightPermutationVectorType; - int rows = m.rows(); - int cols = m.cols(); + Index rows = m.rows(); + Index cols = m.cols(); MatrixType m_original = MatrixType::Random(rows,cols); LeftPermutationVectorType lv; -- cgit v1.2.3