Home | History | Annotate | Download | only in test

Lines Matching defs:vc2

35   ColVectorType vc2 = ColVectorType::Random(cols), vcres(cols);
57 VERIFY_IS_APPROX((-m1.conjugate() * s2) * (s1 * vc2),
58 (-m1.conjugate()*s2).eval() * (s1 * vc2).eval());
59 VERIFY_IS_APPROX((-m1 * s2) * (s1 * vc2.conjugate()),
60 (-m1*s2).eval() * (s1 * vc2.conjugate()).eval());
61 VERIFY_IS_APPROX((-m1.conjugate() * s2) * (s1 * vc2.conjugate()),
62 (-m1.conjugate()*s2).eval() * (s1 * vc2.conjugate()).eval());
64 VERIFY_IS_APPROX((s1 * vc2.transpose()) * (-m1.adjoint() * s2),
65 (s1 * vc2.transpose()).eval() * (-m1.adjoint()*s2).eval());
66 VERIFY_IS_APPROX((s1 * vc2.adjoint()) * (-m1.transpose() * s2),
67 (s1 * vc2.adjoint()).eval() * (-m1.transpose()*s2).eval());
68 VERIFY_IS_APPROX((s1 * vc2.adjoint()) * (-m1.adjoint() * s2),
69 (s1 * vc2.adjoint()).eval() * (-m1.adjoint()*s2).eval());