43#include <Teuchos_UnitTestHarness.hpp>
44#include <Teuchos_CommandLineProcessor.hpp>
84 RCP<sol_mgr_type> solver;
85 TEST_NOTHROW( solver = rcp (
new sol_mgr_type ()) );
92 typedef std::complex<double> ST;
100 RCP<sol_mgr_type> solver = rcp (
new sol_mgr_type ());
101 TEST_THROW( solver->getNumIters() , std::logic_error );
Belos header file which uses auto-configuration information to include necessary C++ headers.
Class which describes the linear problem to be solved by the iterative solver.
The Belos::RCGSolMgr provides a solver manager for the RCG (Recycling Conjugate Gradient) linear solv...
Interface for multivectors used by Belos' linear solvers.
Alternative run-time polymorphic interface for operators.
Implementation of the RCG (Recycling Conjugate Gradient) iterative linear solver.
TEUCHOS_UNIT_TEST(RCG, RealDoesNotThrow)