MCPcopy Create free account
hub / github.com/Meshcapade/difflocks / maxIterations

Function maxIterations

extensions/include/cuMat/src/IterativeSolverBase.h:83–86  ·  view source on GitHub ↗

\returns the max number of iterations. * It is either the value setted by setMaxIterations or, by default, * twice the number of columns of the matrix. */

Source from the content-addressed store, hash-verified

81 * twice the number of columns of the matrix.
82 */
83 Index maxIterations() const
84 {
85 return (maxIterations_ < 0) ? 2 * matrix_.cols() : maxIterations_;
86 }
87
88 /** Sets the max number of iterations.
89 * Default is twice the number of columns of the matrix.

Callers 1

_solve_with_guess_implFunction · 0.85

Calls 1

colsMethod · 0.45

Tested by

no test coverage detected