Lines Matching refs:restart
57 int &iters, const int &restart, typename Dest::RealScalar & tol_error) { in gmres() argument
81 VectorType w = VectorType::Zero(restart + 1); in gmres()
83 FMatrixType H = FMatrixType::Zero(m, restart + 1); // Hessenberg matrix in gmres()
84 VectorType tau = VectorType::Zero(restart + 1); in gmres()
85 std::vector < JacobiRotation < Scalar > > G(restart); in gmres()
94 for (int k = 1; k <= restart; ++k) { in gmres()
116 if (k <= restart) { in gmres()
152 if (stop || k == restart) { in gmres()
182 w = VectorType::Zero(restart + 1); in gmres()
183 H = FMatrixType::Zero(m, restart + 1); in gmres()
184 tau = VectorType::Zero(restart + 1); in gmres()
299 void set_restart(const int restart) { m_restart=restart; }