aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/benchEigenSolver.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'bench/benchEigenSolver.cpp')
-rw-r--r--bench/benchEigenSolver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/benchEigenSolver.cpp b/bench/benchEigenSolver.cpp
index a62ee41f4..395bff3f9 100644
--- a/bench/benchEigenSolver.cpp
+++ b/bench/benchEigenSolver.cpp
@@ -40,7 +40,7 @@ __attribute__ ((noinline)) void benchEigenSolver(const MatrixType& m)
typedef typename MatrixType::Scalar Scalar;
typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> SquareMatrixType;
- MatrixType a = MatrixType::random(rows,cols);
+ MatrixType a = MatrixType::Random(rows,cols);
SquareMatrixType covMat = a * a.adjoint();
BenchTimer timerSa, timerStd;