Home | History | Annotate | Download | only in test

Lines Matching refs:rhs2

18   typedef Matrix<Scalar, OtherSize, Size> Rhs2;
32 Rhs2 rhs2 = Rhs2::Random(othersize, rows), rhs22(othersize, rows), rhs23(othersize, rows);
51 VERIFY_IS_APPROX(rhs12 = (s1*m2).template selfadjointView<Lower>() * (s2*rhs2.adjoint()),
52 rhs13 = (s1*m1) * (s2*rhs2.adjoint()));
55 VERIFY_IS_APPROX(rhs12 = (s1*m2).template selfadjointView<Upper>() * (s2*rhs2.adjoint()),
56 rhs13 = (s1*m1) * (s2*rhs2.adjoint()));
59 VERIFY_IS_APPROX(rhs12 = (s1*m2.adjoint()).template selfadjointView<Lower>() * (s2*rhs2.adjoint()),
60 rhs13 = (s1*m1.adjoint()) * (s2*rhs2.adjoint()));
77 VERIFY_IS_APPROX(rhs22 = (rhs2) * (m2).template selfadjointView<Lower>(), rhs23 = (rhs2) * (m1));
78 VERIFY_IS_APPROX(rhs22 = (s2*rhs2) * (s1*m2).template selfadjointView<Lower>(), rhs23 = (s2*rhs2) * (s1*m1));