42 #ifndef BELOSSOLVERFACTORY_GENERIC_HPP 
   43 #define BELOSSOLVERFACTORY_GENERIC_HPP 
   66 template<
class SC, 
class MV, 
class OP>
 
   71       Impl::registerSolverSubclassForTypes<BiCGStabSolMgr<SC,MV,OP>, SC, MV, OP> (
"BICGSTAB");
 
   72       Impl::registerSolverSubclassForTypes<BlockCGSolMgr<SC,MV,OP>, SC, MV, OP> (
"BLOCK CG");
 
   73       Impl::registerSolverSubclassForTypes<BlockGmresSolMgr<SC,MV,OP>, SC, MV, OP> (
"BLOCK GMRES");
 
   74       Impl::registerSolverSubclassForTypes<FixedPointSolMgr<SC,MV,OP>, SC, MV, OP> (
"FIXED POINT");
 
   75       Impl::registerSolverSubclassForTypes<GCRODRSolMgr<SC,MV,OP>, SC, MV, OP> (
"GCRODR");
 
   76       Impl::registerSolverSubclassForTypes<LSQRSolMgr<SC,MV,OP>, SC, MV, OP> (
"LSQR");
 
   77       Impl::registerSolverSubclassForTypes<MinresSolMgr<SC,MV,OP>, SC, MV, OP> (
"MINRES");
 
   78       Impl::registerSolverSubclassForTypes<PCPGSolMgr<SC,MV,OP>, SC, MV, OP> (
"PCPG");
 
   79       Impl::registerSolverSubclassForTypes<PseudoBlockCGSolMgr<SC,MV,OP>, SC, MV, OP> (
"PSEUDOBLOCK CG");
 
   80       Impl::registerSolverSubclassForTypes<PseudoBlockGmresSolMgr<SC,MV,OP>, SC, MV, OP> (
"PSEUDOBLOCK GMRES");
 
   81       Impl::registerSolverSubclassForTypes<PseudoBlockTFQMRSolMgr<SC,MV,OP>, SC, MV, OP> (
"PSEUDOBLOCK TFQMR");
 
   82       Impl::registerSolverSubclassForTypes<RCGSolMgr<SC,MV,OP>, SC, MV, OP> (
"RCG");
 
   83       Impl::registerSolverSubclassForTypes<TFQMRSolMgr<SC,MV,OP>, SC, MV, OP> (
"TFQMR");
 
   89 #endif // BELOSSOLVERFACTORY_GENERIC_HPP 
Solver manager for the MINRES linear solver. 
 
The Belos::PseudoBlockCGSolMgr provides a solver manager for the BlockCG linear solver. 
 
The Belos::PseudoBlockTFQMRSolMgr provides a solver manager for the pseudo-block TFQMR linear solver...
 
The Belos::FixedPointSolMgr provides a solver manager for the FixedPoint linear solver. 
 
Declaration and definition of Belos::PCPGSolMgr (PCPG iterative linear solver). 
 
Declaration and definition of Belos::GCRODRSolMgr, which implements the GCRODR (recycling GMRES) solv...
 
The Belos::BlockGmresSolMgr provides a solver manager for the BlockGmres linear solver. 
 
The Belos::BiCGStabSolMgr provides a solver manager for the BiCGStab linear solver. 
 
The Belos::BlockCGSolMgr provides a solver manager for the BlockCG linear solver. ...
 
LSQRSolMgr: interface to the LSQR method. 
 
Specializations of Belos::SolverFactory may inherit from this class to get basic SolverFactory functi...
 
The Belos::RCGSolMgr provides a solver manager for the RCG (Recycling Conjugate Gradient) linear solv...
 
The Belos::PseudoBlockGmresSolMgr provides a solver manager for the BlockGmres linear solver...
 
The Belos::TFQMRSolMgr provides a solver manager for the TFQMR linear solver.