Searched refs:m_computeThinU (Results 1 – 5 of 5) sorted by relevance
155 inline bool computeU() const { return m_computeFullU || m_computeThinU; } in computeU()172 bool m_computeFullU, m_computeThinU; variable212 m_computeThinU = (computationOptions & ComputeThinU) != 0; in allocate()215 …eigen_assert(!(m_computeFullU && m_computeThinU) && "SVDBase: you can't ask for both full and thin… in allocate()217 …eigen_assert(EIGEN_IMPLIES(m_computeThinU || m_computeThinV, MatrixType::ColsAtCompileTime==Dynami… in allocate()224 : m_computeThinU ? m_diagSize in allocate()
169 else if (svd.m_computeThinU) m_workspace.resize(svd.cols()); in allocate()179 else if(svd.m_computeThinU) in run()269 else if (svd.m_computeThinU) m_workspace.resize(svd.cols()); in allocate()279 else if(svd.m_computeThinU) in run()627 eigen_assert(!(this->m_computeThinU || this->m_computeThinV) &&658 if(this->m_computeThinU) this->m_matrixU.setIdentity(this->m_rows,this->m_diagSize);
245 aux = this->m_computeThinU; in allocate()246 this->m_computeThinU = this->m_computeThinV; in allocate()321 if (this->m_computeThinU){ in copyUV()
169 else if (svd.m_computeThinU) m_workspace.resize(svd.cols()); in allocate()179 else if(svd.m_computeThinU) in run()269 else if (svd.m_computeThinU) m_workspace.resize(svd.cols()); in allocate()279 else if(svd.m_computeThinU) in run()648 inline bool computeU() const { return m_computeFullU || m_computeThinU; }757 bool m_computeFullU, m_computeThinU;792 m_computeThinU = (computationOptions & ComputeThinU) != 0;795 …eigen_assert(!(m_computeFullU && m_computeThinU) && "JacobiSVD: you can't ask for both full and th…797 …eigen_assert(EIGEN_IMPLIES(m_computeThinU || m_computeThinV, MatrixType::ColsAtCompileTime==Dynami…801 eigen_assert(!(m_computeThinU || m_computeThinV) &&[all …]
59 jobu = (m_computeFullU) ? 'A' : (m_computeThinU) ? 'S' : 'N'; \