Lines Matching refs:adjoint
27 m1 = (m1+m1.adjoint()).eval(); in symm()
54 VERIFY_IS_APPROX(rhs12 = (s1*m2).adjoint().template selfadjointView<Upper>() * (s2*rhs1), in symm()
55 rhs13 = (s1*m1).adjoint() * (s2*rhs1)); in symm()
57 VERIFY_IS_APPROX(rhs12 = (s1*m2).template selfadjointView<Lower>().adjoint() * (s2*rhs1), in symm()
58 rhs13 = (s1*m1).adjoint() * (s2*rhs1)); in symm()
67 VERIFY_IS_APPROX(rhs12 = (s1*m2).template selfadjointView<Lower>() * (s2*rhs2.adjoint()), in symm()
68 rhs13 = (s1*m1) * (s2*rhs2.adjoint())); in symm()
71 VERIFY_IS_APPROX(rhs12 = (s1*m2).template selfadjointView<Upper>() * (s2*rhs2.adjoint()), in symm()
72 rhs13 = (s1*m1) * (s2*rhs2.adjoint())); in symm()
75 …VERIFY_IS_APPROX(rhs12 = (s1*m2.adjoint()).template selfadjointView<Lower>() * (s2*rhs2.adjoint()), in symm()
76 rhs13 = (s1*m1.adjoint()) * (s2*rhs2.adjoint())); in symm()
84 …VERIFY_IS_APPROX(rhs12 = (s1*m2.adjoint()).template selfadjointView<Lower>() * (s2*rhs3).conjugate… in symm()
85 rhs13 = (s1*m1.adjoint()) * (s2*rhs3).conjugate()); in symm()
89 …VERIFY_IS_APPROX(rhs12.noalias() += s1 * ((m2.adjoint()).template selfadjointView<Lower>() * (s2*r… in symm()
90 rhs13 += (s1*m1.adjoint()) * (s2*rhs3).conjugate()); in symm()