53 #ifndef MUELU_PERMUTINGSMOOTHER_DECL_HPP
54 #define MUELU_PERMUTINGSMOOTHER_DECL_HPP
57 #include <Xpetra_CrsMatrixWrap_fwd.hpp>
58 #include <Xpetra_Matrix_fwd.hpp>
59 #include <Xpetra_Vector_fwd.hpp>
60 #include <Xpetra_VectorFactory_fwd.hpp>
61 #include <Xpetra_MultiVector_fwd.hpp>
62 #include <Xpetra_MultiVectorFactory_fwd.hpp>
66 #include "MueLu_SmootherPrototype.hpp"
81 template <class Scalar = SmootherPrototype<>::scalar_type,
82 class LocalOrdinal =
typename SmootherPrototype<Scalar>::local_ordinal_type,
83 class GlobalOrdinal =
typename SmootherPrototype<Scalar, LocalOrdinal>::global_ordinal_type,
84 class Node =
typename SmootherPrototype<Scalar, LocalOrdinal, GlobalOrdinal>::node_type>
87 #undef MUELU_PERMUTINGSMOOTHER_SHORT
127 void Apply(MultiVector& X,
const MultiVector& B,
bool InitialGuessIsZero =
false)
const;
177 #define MUELU_PERMUTINGSMOOTHER_SHORT
std::string description() const
Return a simple one-line description of this object.
MueLu::DefaultLocalOrdinal LocalOrdinal
RCP< SmootherPrototype > Copy() const
virtual ~PermutingSmoother()
Destructor.
void Apply(MultiVector &X, const MultiVector &B, bool InitialGuessIsZero=false) const
Apply the direct solver. Solves the linear system AX=B using the constructed solver.
Base class for smoother prototypes.
This class first calculates row- and column permutation operators and applies a smoother to the permu...
LO overlap_
overlap when using the smoother in additive Schwarz mode
void Setup(Level ¤tLevel)
Set up the direct solver.
MueLu::DefaultGlobalOrdinal GlobalOrdinal
Class that holds all level-specific information.
Teuchos::RCP< Matrix > diagScalingOp_
scaling matrix object
RCP< FactoryBase > permFact_
Permutation Factory.
void DeclareInput(Level ¤tLevel) const
Input.
RCP< Matrix > permP_
permP matrix object
std::string type_
ifpack1/2-specific key phrase that denote smoother type
void print(Teuchos::FancyOStream &out, const VerbLevel verbLevel=Default) const
Print the object with some verbosity level to an FancyOStream object.
PermutingSmoother(std::string const &mapName, const RCP< const FactoryBase > &mapFact, std::string const &type="", const Teuchos::ParameterList ¶mList=Teuchos::ParameterList(), LO const &overlap=0, RCP< FactoryBase > permFact=Teuchos::null)
Constructor.
size_t getNodeSmootherComplexity() const
Get a rough estimate of cost per iteration.
RCP< Matrix > permQT_
permQT matrix object
RCP< SmootherPrototype > s_
Smoother.