Home | History | Annotate | Download | only in IterativeSolvers

Lines Matching full:solver

219   * \brief A GMRES solver for sparse square problems
231 * This class can be used as the direct solver classes. Here is a typical usage example:
237 * GMRES<SparseMatrix<double> > solver(A);
238 * x = solver.solve(b);
239 * std::cout << "#iterations: " << solver.iterations() << std::endl;
240 * std::cout << "estimated error: " << solver.error() << std::endl;
242 * x = solver.solve(b);
251 * solver.setMaxIterations(1);
254 * x = solver.solveWithGuess(b,x);
255 * std::cout << i << " : " << solver.error() << std::endl;
257 * } while (solver.info()!=Success && i<100);
288 /** Initialize the solver with matrix \a A for further \c Ax=b solving.