MueLu Version of the Day
Loading...
Searching...
No Matches
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
20#include <Teuchos_ParameterList.hpp>
21#include <Xpetra_Matrix_fwd.hpp>
22#include <Xpetra_Vector_fwd.hpp>
23#include <Xpetra_VectorFactory_fwd.hpp>
24#include <Xpetra_MultiVector_fwd.hpp>
25#include <Xpetra_MultiVectorFactory_fwd.hpp>
26
27#include "MueLu_ConfigDefs.hpp"
28
29#include "MueLu_SmootherPrototype.hpp"
33
34namespace MueLu {
35
43template <class Scalar = SmootherPrototype<>::scalar_type,
47class PermutingSmoother : public SmootherPrototype<Scalar, LocalOrdinal, GlobalOrdinal, Node> {
48#undef MUELU_PERMUTINGSMOOTHER_SHORT
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
90 RCP<SmootherPrototype> Copy() const;
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
115 RCP<FactoryBase> permFact_;
116
118 RCP<Matrix> permQT_;
119
121 RCP<Matrix> permP_;
122
124 Teuchos::RCP<Matrix> diagScalingOp_;
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 */
MueLu::DefaultLocalOrdinal LocalOrdinal
MueLu::DefaultGlobalOrdinal GlobalOrdinal
MueLu::DefaultNode Node
Class that holds all level-specific information.
This class first calculates row- and column permutation operators and applies a smoother to the permu...
std::string description() const
Return a simple one-line description of this object.
void print(Teuchos::FancyOStream &out, const VerbLevel verbLevel=Default) const
Print the object with some verbosity level to an FancyOStream object.
RCP< FactoryBase > permFact_
Permutation Factory.
RCP< Matrix > permQT_
permQT matrix object
Teuchos::RCP< Matrix > diagScalingOp_
scaling matrix object
RCP< SmootherPrototype > Copy() const
size_t getNodeSmootherComplexity() const
Get a rough estimate of cost per iteration.
void DeclareInput(Level &currentLevel) const
Input.
void Setup(Level &currentLevel)
Set up the direct solver.
LO overlap_
overlap when using the smoother in additive Schwarz mode
std::string type_
ifpack1/2-specific key phrase that denote smoother type
RCP< SmootherPrototype > s_
Smoother.
RCP< Matrix > permP_
permP matrix object
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.
Namespace for MueLu classes and methods.