Searched refs:vcres (Results 1 – 3 of 3) sorted by relevance
50 ColVectorType vc2 = ColVectorType::Random(cols), vcres(cols); in product()99 vcres = vc2; in product()100 vcres.noalias() += m1.transpose() * v1; in product()101 VERIFY_IS_APPROX(vcres, vc2 + m1.transpose() * v1); in product()111 vcres = vc2; in product()112 vcres.noalias() -= m1.transpose() * v1; in product()113 VERIFY_IS_APPROX(vcres, vc2 - m1.transpose() * v1); in product()
34 ColVectorType vc2 = ColVectorType::Random(cols), vcres(cols); in product_extra() local
52 ColVectorType vc2 = ColVectorType::Random(cols), vcres(cols); in product()104 vcres = vc2; in product()105 vcres += (m1.transpose() * v1).lazy(); in product()106 VERIFY_IS_APPROX(vcres, vc2 + m1.transpose() * v1); in product()