aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/prec_inverse_4x4.cpp
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2010-04-22 20:40:31 -0400
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2010-04-22 20:40:31 -0400
commit2362eadcdd710038b43ba8bde17dc124fe0d00bb (patch)
tree38ca6cc781e41c6913c1b59a43e1923ebd26bdfb /test/prec_inverse_4x4.cpp
parentabbe260905e96b9323cb5cf4ab9189a3292bf585 (diff)
remove Minor
adapt 3x3 and 4x4 (non-SSE) inverse paths
Diffstat (limited to 'test/prec_inverse_4x4.cpp')
-rw-r--r--test/prec_inverse_4x4.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/prec_inverse_4x4.cpp b/test/prec_inverse_4x4.cpp
index 59ccbbcaf..e81329f68 100644
--- a/test/prec_inverse_4x4.cpp
+++ b/test/prec_inverse_4x4.cpp
@@ -36,6 +36,7 @@ template<typename MatrixType> void inverse_permutation_4x4()
MatrixType m = PermutationMatrix<4>(indices);
MatrixType inv = m.inverse();
double error = double( (m*inv-MatrixType::Identity()).norm() / NumTraits<Scalar>::epsilon() );
+ EIGEN_DEBUG_VAR(error)
VERIFY(error == 0.0);
std::next_permutation(indices.data(),indices.data()+4);
}