MueLu  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
MueLu_PermutingSmoother_decl.hpp
Go to the documentation of this file.
1 // @HEADER
2 // *****************************************************************************
3 // MueLu: A package for multigrid based preconditioning
4 //
5 // Copyright 2012 NTESS and the MueLu contributors.
6 // SPDX-License-Identifier: BSD-3-Clause
7 // *****************************************************************************
8 // @HEADER
9 
10 /*
11  * MueLu_PermutingSmoother_decl.hpp
12  *
13  * Created on: Nov 28, 2012
14  * Author: wiesner
15  */
16 
17 #ifndef MUELU_PERMUTINGSMOOTHER_DECL_HPP
18 #define MUELU_PERMUTINGSMOOTHER_DECL_HPP
19 
21 #include <Xpetra_Matrix_fwd.hpp>
22 #include <Xpetra_Vector_fwd.hpp>
26 
27 #include "MueLu_ConfigDefs.hpp"
28 
29 #include "MueLu_SmootherPrototype.hpp"
33 
34 namespace MueLu {
35 
43 template <class Scalar = SmootherPrototype<>::scalar_type,
44  class LocalOrdinal = typename SmootherPrototype<Scalar>::local_ordinal_type,
45  class GlobalOrdinal = typename SmootherPrototype<Scalar, LocalOrdinal>::global_ordinal_type,
46  class Node = typename SmootherPrototype<Scalar, LocalOrdinal, GlobalOrdinal>::node_type>
47 class PermutingSmoother : public SmootherPrototype<Scalar, LocalOrdinal, GlobalOrdinal, Node> {
48 #undef MUELU_PERMUTINGSMOOTHER_SHORT
49 #include "MueLu_UseShortNames.hpp"
50 
51  public:
53 
54 
62  PermutingSmoother(std::string const& mapName, const RCP<const FactoryBase>& mapFact, std::string const& type = "", const Teuchos::ParameterList& paramList = Teuchos::ParameterList(), LO const& overlap = 0, RCP<FactoryBase> permFact = Teuchos::null);
63 
65  virtual ~PermutingSmoother();
67 
69 
70 
71  void DeclareInput(Level& currentLevel) const;
72 
74 
76 
77 
79  void Setup(Level& currentLevel);
80 
87  void Apply(MultiVector& X, const MultiVector& B, bool InitialGuessIsZero = false) const;
89 
91 
93 
94 
96  std::string description() const;
97 
99  // using MueLu::Describable::describe; // overloading, not hiding
100  void print(Teuchos::FancyOStream& out, const VerbLevel verbLevel = Default) const;
101 
103  size_t getNodeSmootherComplexity() const { return s_->getNodeSmootherComplexity(); }
104 
106 
107  private:
109  std::string type_;
110 
113 
116 
119 
122 
125 
126  //
127  // Underlying Smoother
128  //
129 
131  RCP<SmootherPrototype> s_; // TrilinosSmoother object
132 
133 }; // class PermutingSmoother
134 
135 } // namespace MueLu
136 
137 #define MUELU_PERMUTINGSMOOTHER_SHORT
138 #endif /* MUELU_PERMUTINGSMOOTHER_DECL_HPP */
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.
LocalOrdinal LO
MueLu::DefaultNode Node
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 &currentLevel)
Set up the direct solver.
MueLu::DefaultGlobalOrdinal GlobalOrdinal
Class that holds all level-specific information.
Definition: MueLu_Level.hpp:63
Teuchos::RCP< Matrix > diagScalingOp_
scaling matrix object
RCP< FactoryBase > permFact_
Permutation Factory.
void DeclareInput(Level &currentLevel) 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 &paramList=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.