Lines Matching full:conjugate
52 VERIFY_IS_APPROX( m1.adjoint() * (s1*m2).conjugate(), (m1.adjoint()).eval() * ((s1*m2).conjugate()).eval());
55 // test all possible conjugate combinations for the four matrix-vector product cases:
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());
78 VERIFY_IS_APPROX((s1 * v1) * (-m1.conjugate() * s2),
79 (s1 * v1).eval() * (-m1.conjugate()*s2).eval());
80 VERIFY_IS_APPROX((s1 * v1.conjugate()) * (-m1 * s2),
81 (s1 * v1.conjugate()).eval() * (-m1*s2).eval());
82 VERIFY_IS_APPROX((s1 * v1.conjugate()) * (-m1.conjugate() * s2),
83 (s1 * v1.conjugate()).eval() * (-m1.conjugate()*s2).eval());