Lines Matching refs:rcond
95 RealScalar rcond = (RealScalar(1) / matrix_l1_norm<MatrixType, Lower>(symmLo)) / in cholesky() local
97 RealScalar rcond_est = chollo.rcond(); in cholesky()
100 VERIFY(rcond_est > rcond / 10 && rcond_est < rcond * 10); in cholesky()
113 rcond = (RealScalar(1) / matrix_l1_norm<MatrixType, Upper>(symmUp)) / in cholesky()
115 rcond_est = cholup.rcond(); in cholesky()
116 VERIFY(rcond_est > rcond / 10 && rcond_est < rcond * 10); in cholesky()
165 RealScalar rcond = (RealScalar(1) / matrix_l1_norm<MatrixType, Lower>(symmLo)) / in cholesky() local
167 RealScalar rcond_est = ldltlo.rcond(); in cholesky()
170 VERIFY(rcond_est > rcond / 10 && rcond_est < rcond * 10); in cholesky()
184 rcond = (RealScalar(1) / matrix_l1_norm<MatrixType, Upper>(symmUp)) / in cholesky()
186 rcond_est = ldltup.rcond(); in cholesky()
187 VERIFY(rcond_est > rcond / 10 && rcond_est < rcond * 10); in cholesky()