From afa8f2ca952e52201b36813b848aa7a68fca70e9 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Tue, 21 Jul 2009 11:19:52 +0200 Subject: * various fixes related to sub diagonals and band matrix * allows 0 sized objects in Block/Map --- test/bandmatrix.cpp | 37 ++++++++++++++++++++++++++++++------- 1 file changed, 30 insertions(+), 7 deletions(-) (limited to 'test/bandmatrix.cpp') diff --git a/test/bandmatrix.cpp b/test/bandmatrix.cpp index 69ab0ed1d..f677e7b85 100644 --- a/test/bandmatrix.cpp +++ b/test/bandmatrix.cpp @@ -24,15 +24,20 @@ #include "main.h" -template void bandmatrix(MatrixType& m) +template void bandmatrix(const MatrixType& _m) { typedef typename MatrixType::Scalar Scalar; typedef typename NumTraits::Real RealScalar; typedef Matrix DenseMatrixType; - int size = m.rows(); + int rows = _m.rows(); + int cols = _m.cols(); + int supers = _m.supers(); + int subs = _m.subs(); - DenseMatrixType dm1(size,size); + MatrixType m(rows,cols,supers,subs); + + DenseMatrixType dm1(rows,cols); dm1.setZero(); m.diagonal().setConstant(123); @@ -47,15 +52,33 @@ template void bandmatrix(MatrixType& m) m.diagonal(-i).setConstant(-i); dm1.diagonal(-i).setConstant(-i); } - std::cerr << m.toDense() << "\n\n" << dm1 << "\n\n"; + //std::cerr << m.m_data << "\n\n" << m.toDense() << "\n\n" << dm1 << "\n\n\n\n"; + VERIFY_IS_APPROX(dm1,m.toDense()); + + for (int i=0; i0) dm1.block(0,d+supers,rows,a).setZero(); + dm1.block(0,supers+1,cols-supers-1-a,cols-supers-1-a).template triangularView().setZero(); + dm1.block(subs+1,0,rows-subs-1-b,rows-subs-1-b).template triangularView().setZero(); + if(b>0) dm1.block(d+subs,0,b,cols).setZero(); + //std::cerr << m.m_data << "\n\n" << m.toDense() << "\n\n" << dm1 << "\n\n"; VERIFY_IS_APPROX(dm1,m.toDense()); } void test_bandmatrix() { - for(int i = 0; i < g_repeat ; i++) { - BandMatrix m(6,6,3,2); - CALL_SUBTEST( bandmatrix(m) ); + for(int i = 0; i < 10*g_repeat ; i++) { + int rows = ei_random(1,10); + int cols = ei_random(1,10); + int sups = ei_random(0,cols-1); + int subs = ei_random(0,rows-1); + CALL_SUBTEST( bandmatrix(BandMatrix(rows,cols,sups,subs)) ); } } -- cgit v1.2.3