HomeSort by relevance Sort by last modified time
    Searched refs:m_maxIterationsPerRow (Results 1 - 6 of 6) sorted by null

  /external/eigen/test/
schur_complex.cpp 52 cs3.setMaxIterations(ComplexSchur<MatrixType>::m_maxIterationsPerRow * size).compute(A);
schur_real.cpp 71 rs3.setMaxIterations(RealSchur<MatrixType>::m_maxIterationsPerRow * size).compute(A);
eigensolver_complex.cpp 99 ei2.setMaxIterations(ComplexSchur<MatrixType>::m_maxIterationsPerRow * rows).compute(a);
eigensolver_generic.cpp 48 ei2.setMaxIterations(RealSchur<MatrixType>::m_maxIterationsPerRow * rows).compute(a);
  /external/eigen/Eigen/src/Eigenvalues/
ComplexSchur.h 225 * If not specified by the user, the maximum number of iterations is m_maxIterationsPerRow times the size
245 static const int m_maxIterationsPerRow = 30;
391 maxIters = m_maxIterationsPerRow * m_matT.rows();
RealSchur.h 203 * If not specified by the user, the maximum number of iterations is m_maxIterationsPerRow times the size
223 static const int m_maxIterationsPerRow = 40;
256 maxIters = m_maxIterationsPerRow * matrix.rows();
292 maxIters = m_maxIterationsPerRow * matrixH.rows();

Completed in 111 milliseconds