14 #ifndef IFPACK2_DETAILS_LINEARSOLVERFACTORY_DEF_HPP
15 #define IFPACK2_DETAILS_LINEARSOLVERFACTORY_DEF_HPP
19 #include "Ifpack2_Details_LinearSolver.hpp"
20 #include "Ifpack2_Factory.hpp"
21 #include "Tpetra_RowMatrix.hpp"
22 #include <type_traits>
27 template<
class SC,
class LO,
class GO,
class NT>
34 using Teuchos::rcp_dynamic_cast;
37 typedef Tpetra::RowMatrix<SC, LO, GO, NT> ROW;
38 const char prefix[] =
"Ifpack2::Details::LinearSolverFactory::getLinearSolver: ";
40 RCP<prec_type> solver;
46 solver = Ifpack2::Factory::template create<ROW> (solverName, null);
48 catch (std::exception& e) {
50 (
true, std::invalid_argument, prefix <<
"Failed to create Ifpack2 "
51 "preconditioner named \"" << solverName <<
"\", for the following "
52 "template parameters: "
53 <<
"SC = " << TypeNameTraits<SC>::name ()
54 <<
", LO = " << TypeNameTraits<LO>::name ()
55 <<
", GO = " << TypeNameTraits<GO>::name ()
56 <<
", NT = " << TypeNameTraits<NT>::name ()
57 <<
". Ifpack2::Factory::create threw an exception: " << e.what ());
60 (solver.is_null (), std::invalid_argument, prefix <<
"Failed to create "
61 "Ifpack2 preconditioner named \"" << solverName <<
"\", for the "
62 "following template parameters: "
63 <<
"SC = " << TypeNameTraits<SC>::name ()
64 <<
", LO = " << TypeNameTraits<LO>::name ()
65 <<
", GO = " << TypeNameTraits<GO>::name ()
66 <<
", NT = " << TypeNameTraits<NT>::name ()
67 <<
". Ifpack2::Factory::create returned null.");
70 return Teuchos::rcp (
new impl_type (solver, solverName));
73 template<
class SC,
class LO,
class GO,
class NT>
78 typedef Tpetra::MultiVector<SC, LO, GO, NT> MV;
79 typedef Tpetra::Operator<SC, LO, GO, NT> OP;
80 typedef typename MV::mag_type mag_type;
84 #ifdef HAVE_TEUCHOSCORE_CXX11
85 typedef std::shared_ptr<factory_base_type> base_ptr_type;
86 typedef std::shared_ptr<factory_impl_type> impl_ptr_type;
90 #endif // HAVE_TEUCHOSCORE_CXX11
92 impl_ptr_type factory (
new factory_impl_type ());
93 base_ptr_type factoryBase = factory;
96 (factoryBase.get () == NULL, std::logic_error,
"Factory is null! This "
97 "should never happen! Please report this bug to the Ifpack2 developers.");
113 Trilinos::Details::registerLinearSolverFactory<MV, OP, mag_type> (
"Ifpack2", factoryBase);
121 #define IFPACK2_DETAILS_LINEARSOLVERFACTORY_INSTANT( SC, LO, GO, NT ) \
122 template class Ifpack2::Details::LinearSolverFactory<SC, LO, GO, NT>;
124 #endif // IFPACK2_DETAILS_LINEARSOLVERFACTORY_DEF_HPP
#define TEUCHOS_TEST_FOR_EXCEPTION(throw_exception_test, Exception, msg)
static void registerLinearSolverFactory()
Register this LinearSolverFactory with the central registry.
Definition: Ifpack2_Details_LinearSolverFactory_def.hpp:76
TEUCHOS_DEPRECATED RCP< T > rcp(T *p, Dealloc_T dealloc, bool owns_mem)
Interface for a "factory" that creates Ifpack2 solvers.
Definition: Ifpack2_Details_LinearSolverFactory_decl.hpp:31
Ifpack2's implementation of Trilinos::Details::LinearSolver interface.
Definition: Ifpack2_Details_LinearSolver_decl.hpp:72
virtual Teuchos::RCP< solver_type > getLinearSolver(const std::string &solverName)
Get an instance of a Ifpack2 solver.
Definition: Ifpack2_Details_LinearSolverFactory_def.hpp:30
Interface for all Ifpack2 preconditioners.
Definition: Ifpack2_Preconditioner.hpp:74
Declaration of interface for preconditioners that can change their matrix after construction.