Home | History | Annotate | Download | only in IterativeSolvers

Lines Matching refs:restart

29  *  \param restart   number of iterations for a restart
57 int &iters, const int &restart, typename Dest::RealScalar & tol_error) {
78 VectorType w = VectorType::Zero(restart + 1);
80 FMatrixType H = FMatrixType::Zero(m, restart + 1);
81 VectorType tau = VectorType::Zero(restart + 1);
82 std::vector < JacobiRotation < Scalar > > G(restart);
91 for (int k = 1; k <= restart; ++k) {
113 if (k <= restart) {
149 if (stop || k == restart) {
174 // reset data for a restart r0 = rhs - mat * x;
179 w = VectorType::Zero(restart + 1);
180 H = FMatrixType::Zero(m, restart + 1);
181 tau = VectorType::Zero(restart + 1);
302 /** Get the number of iterations after that a restart is performed.
306 /** Set the number of iterations after that a restart is performed.
307 * \param restart number of iterations for a restarti, default is 30.
309 void set_restart(const int restart) { m_restart=restart; }