From 414efa47d3e37a15ef681f86425778fbf3a09c27 Mon Sep 17 00:00:00 2001 From: Rasmus Munk Larsen Date: Mon, 8 Feb 2016 08:50:34 -0800 Subject: Add missing calls to tests of COD. Fix a few mistakes in 3.2 -> 3.3 port. --- Eigen/src/QR/CompleteOrthogonalDecomposition.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Eigen/src/QR') diff --git a/Eigen/src/QR/CompleteOrthogonalDecomposition.h b/Eigen/src/QR/CompleteOrthogonalDecomposition.h index b81bb7433..4095e79e5 100644 --- a/Eigen/src/QR/CompleteOrthogonalDecomposition.h +++ b/Eigen/src/QR/CompleteOrthogonalDecomposition.h @@ -480,7 +480,7 @@ template template void CompleteOrthogonalDecomposition<_MatrixType>::_solve_impl( const RhsType& rhs, DstType& dst) const { - eigen_assert(rhs().rows() == this->rows()); + eigen_assert(rhs.rows() == this->rows()); const Index rank = this->rank(); if (rank == 0) { @@ -491,7 +491,7 @@ void CompleteOrthogonalDecomposition<_MatrixType>::_solve_impl( // Compute c = Q^* * rhs // Note that the matrix Q = H_0^* H_1^*... so its inverse is // Q^* = (H_0 H_1 ...)^T - typename RhsType::PlainObject c(rhs()); + typename RhsType::PlainObject c(rhs); c.applyOnTheLeft( householderSequence(matrixQTZ(), hCoeffs()).setLength(rank).transpose()); -- cgit v1.2.3