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();
91 SquareMatrixType symmUp = symm.template triangularView<Upper>();
92 SquareMatrixType symmLo = symm.template triangularView<Lower>();
94 LLT<SquareMatrixType,Lower> chollo(symmLo);
102 LLT<SquareMatrixType,Upper> cholup(symmUp);
143 SquareMatrixType symmUp = symm.template triangularView<Upper>();
144 SquareMatrixType symmLo = symm.template triangularView<Lower>();
146 LDLT<SquareMatrixType,Lower> ldltlo(symmLo);
153 LDLT<SquareMatrixType,Upper> ldltup(symmUp);
187 SquareMatrixType A = symm;
205 SquareMatrixType A = a * a.adjoint();
224 SquareMatrixType A = a * d.asDiagonal() * a.adjoint();
237 CALL_SUBTEST(( test_chol_update<SquareMatrixType,LLT>(symm) ));
238 CALL_SUBTEST(( test_chol_update<SquareMatrixType,LDLT>(symm) ));