Lines Matching defs:size
18 const Index size = T.cols();
22 for(int row = 2; row < size; ++row) {
30 for(int row = 1; row < size; ++row) {
32 VERIFY(row == size-1 || T(row+1,row) == 0);
40 template<typename MatrixType> void schur(int size = MatrixType::ColsAtCompileTime)
44 MatrixType A = MatrixType::Random(size, size);
60 MatrixType A = MatrixType::Random(size, size);
71 rs3.setMaxIterations(RealSchur<MatrixType>::m_maxIterationsPerRow * size).compute(A);
75 if (size > 2) {
86 VERIFY_IS_EQUAL(rs3.matrixU(), MatrixType::Identity(size, size));
94 if (size > 2)
110 // Test problem size constructors