mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Fix clang6 failures.
This commit is contained in:
committed by
Rasmus Munk Larsen
parent
9e962d9c54
commit
dd4c2805d9
@@ -188,8 +188,10 @@ void product(const MatrixType& m) {
|
||||
VERIFY(areNotApprox(res2, square2 + m2.transpose() * m1, not_approx_epsilon));
|
||||
}
|
||||
|
||||
VERIFY_IS_APPROX(res.col(r).noalias() = square.adjoint() * square.col(r), (square.adjoint() * square.col(r)).eval());
|
||||
VERIFY_IS_APPROX(res.col(r).noalias() = square * square.col(r), (square * square.col(r)).eval());
|
||||
res.col(r).noalias() = square.adjoint() * square.col(r);
|
||||
VERIFY_IS_APPROX(res.col(r), (square.adjoint() * square.col(r)).eval());
|
||||
res.col(r).noalias() = square * square.col(r);
|
||||
VERIFY_IS_APPROX(res.col(r), (square * square.col(r)).eval());
|
||||
|
||||
// vector at runtime (see bug 1166)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user