Home | History | Annotate | Download | only in test

Lines Matching refs:SquareMatrixType

72   typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> SquareMatrixType;
78 SquareMatrixType symm = a0 * a0.adjoint();
86 SquareMatrixType symmUp = symm.template triangularView<Upper>();
87 SquareMatrixType symmLo = symm.template triangularView<Lower>();
94 LLT<SquareMatrixType,Lower> chollo(symmLo);
102 LLT<SquareMatrixType,Upper> cholup(symmUp);
128 SquareMatrixType symmUp = symm.template triangularView<Upper>();
129 SquareMatrixType symmLo = symm.template triangularView<Lower>();
131 LDLT<SquareMatrixType,Lower> ldltlo(symmLo);
138 LDLT<SquareMatrixType,Upper> ldltup(symmUp);
186 CALL_SUBTEST(( test_chol_update<SquareMatrixType,LLT>(symm) ));
187 CALL_SUBTEST(( test_chol_update<SquareMatrixType,LDLT>(symm) ));