Lines Matching full:solver
106 * \brief A bi conjugate gradient stabilized solver for sparse square problems
118 * This class can be used as the direct solver classes. Here is a typical usage example:
124 * BiCGSTAB<SparseMatrix<double> > solver;
125 * solver(A);
126 * x = solver.solve(b);
127 * std::cout << "#iterations: " << solver.iterations() << std::endl;
128 * std::cout << "estimated error: " << solver.error() << std::endl;
130 * x = solver.solve(b);
139 * solver.setMaxIterations(1);
142 * x = solver.solveWithGuess(b,x);
143 * std::cout << i << " : " << solver.error() << std::endl;
145 * } while (solver.info()!=Success && i<100);
172 /** Initialize the solver with matrix \a A for further \c Ax=b solving.