From c10f069b6b9f0dd4bb313341d1969bd7e1cf9338 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Mon, 21 Jul 2008 00:34:46 +0000 Subject: * Merge Extract and Part to the Part expression. Renamed "MatrixBase::extract() const" to "MatrixBase::part() const" * Renamed static functions identity, zero, ones, random with an upper case first letter: Identity, Zero, Ones and Random. --- test/inverse.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test/inverse.cpp') diff --git a/test/inverse.cpp b/test/inverse.cpp index 0324cd1ea..5614c987d 100644 --- a/test/inverse.cpp +++ b/test/inverse.cpp @@ -36,10 +36,10 @@ template void inverse(const MatrixType& m) typedef typename MatrixType::Scalar Scalar; typedef Matrix VectorType; - MatrixType m1 = MatrixType::random(rows, cols), - m2 = MatrixType::random(rows, cols), - mzero = MatrixType::zero(rows, cols), - identity = MatrixType::identity(rows, rows); + MatrixType m1 = MatrixType::Random(rows, cols), + m2 = MatrixType::Random(rows, cols), + mzero = MatrixType::Zero(rows, cols), + identity = MatrixType::Identity(rows, rows); m2 = m1.inverse(); VERIFY_IS_APPROX(m1, m2.inverse() ); -- cgit v1.2.3