\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. */
| 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. |
no test coverage detected