Home | History | Annotate | Download | only in test

Lines Matching defs:rhs1

15   typedef Matrix<Scalar, Size, OtherSize> Rhs1;
29 Rhs1 rhs1 = Rhs1::Random(cols, othersize), rhs12(cols, othersize), rhs13(cols, othersize);
39 VERIFY_IS_APPROX(rhs12 = (s1*m2).template selfadjointView<Lower>() * (s2*rhs1),
40 rhs13 = (s1*m1) * (s2*rhs1));
42 VERIFY_IS_APPROX(rhs12 = (s1*m2).transpose().template selfadjointView<Upper>() * (s2*rhs1),
43 rhs13 = (s1*m1.transpose()) * (s2*rhs1));
45 VERIFY_IS_APPROX(rhs12 = (s1*m2).template selfadjointView<Lower>().transpose() * (s2*rhs1),
46 rhs13 = (s1*m1.transpose()) * (s2*rhs1));
48 VERIFY_IS_APPROX(rhs12 = (s1*m2).conjugate().template selfadjointView<Lower>() * (s2*rhs1),
49 rhs13 = (s1*m1).conjugate() * (s2*rhs1));
51 VERIFY_IS_APPROX(rhs12 = (s1*m2).template selfadjointView<Lower>().conjugate() * (s2*rhs1),
52 rhs13 = (s1*m1).conjugate() * (s2*rhs1));
54 VERIFY_IS_APPROX(rhs12 = (s1*m2).adjoint().template selfadjointView<Upper>() * (s2*rhs1),
55 rhs13 = (s1*m1).adjoint() * (s2*rhs1));
57 VERIFY_IS_APPROX(rhs12 = (s1*m2).template selfadjointView<Lower>().adjoint() * (s2*rhs1),
58 rhs13 = (s1*m1).adjoint() * (s2*rhs1));
63 VERIFY_IS_APPROX(rhs12 += (s1*m2).template selfadjointView<Upper>() * (s2*rhs1),
64 rhs13 += (s1*m1) * (s2*rhs1));