Lines Matching refs:rhs3
18 typedef Matrix<Scalar, Size, OtherSize,order> Rhs3;
31 Rhs3 rhs3 = Rhs3::Random(cols, othersize), rhs32(cols, othersize), rhs33(cols, othersize);
62 VERIFY_IS_APPROX(rhs12 -= (s1*m2).template selfadjointView<Lower>() * (s2*rhs3),
63 rhs13 -= (s1*m1) * (s2 * rhs3));
66 VERIFY_IS_APPROX(rhs12 = (s1*m2.adjoint()).template selfadjointView<Lower>() * (s2*rhs3).conjugate(),
67 rhs13 = (s1*m1.adjoint()) * (s2*rhs3).conjugate());
71 VERIFY_IS_APPROX(rhs12.noalias() += s1 * ((m2.adjoint()).template selfadjointView<Lower>() * (s2*rhs3).conjugate()),
72 rhs13 += (s1*m1.adjoint()) * (s2*rhs3).conjugate());