fix compilation of sparse_basic unit test for complexes

This commit is contained in:
Gael Guennebaud 2011-12-23 09:41:14 +01:00
parent e3e39ea26d
commit 67ae94f3a2

View File

@ -245,16 +245,16 @@ template<typename SparseMatrixType> void sparse_basic(const SparseMatrixType& re
m3.insertByOuterInner(j,k) = k+1;
for(int j=0; j<rows; ++j)
{
VERIFY(j==m3.innerVector(j).nonZeros());
VERIFY(j==internal::real(m3.innerVector(j).nonZeros()));
if(j>0)
VERIFY(j==m3.innerVector(j).lastCoeff());
VERIFY(j==internal::real(m3.innerVector(j).lastCoeff()));
}
m3.makeCompressed();
for(int j=0; j<rows; ++j)
{
VERIFY(j==m3.innerVector(j).nonZeros());
VERIFY(j==internal::real(m3.innerVector(j).nonZeros()));
if(j>0)
VERIFY(j==m3.innerVector(j).lastCoeff());
VERIFY(j==internal::real(m3.innerVector(j).lastCoeff()));
}
//m2.innerVector(j0) = 2*m2.innerVector(j1);