MueLu Version of the Day
Loading...
Searching...
No Matches
MueLu_DirectSolver_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#ifndef MUELU_DIRECTSOLVER_DECL_HPP
11#define MUELU_DIRECTSOLVER_DECL_HPP
12
13#include <Teuchos_ParameterList.hpp>
14
15#include "MueLu_ConfigDefs.hpp"
17
18#include "MueLu_SmootherPrototype.hpp"
19
26
27// Note: DirectSolver is a SmootherPrototype that cannot be turned into a smoother using Setup().
28// When this prototype is cloned using Copy(), the clone is an Amesos or an Amesos2 smoother.
29// The clone can be used as a smoother after calling Setup().
30
31namespace MueLu {
32
39template <class Scalar = SmootherPrototype<>::scalar_type,
43class DirectSolver : public SmootherPrototype<Scalar, LocalOrdinal, GlobalOrdinal, Node> {
44#undef MUELU_DIRECTSOLVER_SHORT
46
47 public:
49
50
53 DirectSolver(const std::string& type = "", const Teuchos::ParameterList& paramList = Teuchos::ParameterList());
54
56 virtual ~DirectSolver() {}
57
59
61
62
63 void DeclareInput(Level& currentLevel) const;
64
66
68
69
71 void Setup(Level& currentLevel);
72
74 void Apply(MultiVector& X, const MultiVector& B, bool InitialGuessIsZero = false) const;
75
77
79 void SetFactory(const std::string& varName, const RCP<const FactoryBase>& factory);
80
82 RCP<SmootherPrototype> Copy() const;
83
85
86
88 std::string description() const;
89
90 void print(Teuchos::FancyOStream& out, const VerbLevel verbLevel = Default) const;
91
94 if (!s_.is_null())
95 return s_->getNodeSmootherComplexity();
96 else
97 return 0.0;
98 }
99
101
102 private:
103 //
104 // Parameters
105 //
106
108 std::string type_;
109
110 //
111 // Underlying Smoother
112 //
113
116 mutable RCP<SmootherPrototype> s_;
117
118 // Records for the case if something goes wrong
121
122}; // class DirectSolver
123
124} // namespace MueLu
125
126#define MUELU_DIRECTSOLVER_SHORT
127#endif // MUELU_DIRECTSOLVER_DECL_HPP
MueLu::DefaultLocalOrdinal LocalOrdinal
MueLu::DefaultGlobalOrdinal GlobalOrdinal
MueLu::DefaultNode Node
Class that encapsulates direct solvers. Autoselection of AmesosSmoother or Amesos2Smoother according ...
void print(Teuchos::FancyOStream &out, const VerbLevel verbLevel=Default) const
void Apply(MultiVector &X, const MultiVector &B, bool InitialGuessIsZero=false) const
DirectSolver cannot be applied. Apply() always returns a RuntimeError exception.
virtual ~DirectSolver()
Destructor.
std::string description() const
Return a simple one-line description of this object.
void Setup(Level &currentLevel)
DirectSolver cannot be turned into a smoother using Setup(). Setup() always returns a RuntimeError ex...
void SetFactory(const std::string &varName, const RCP< const FactoryBase > &factory)
Custom SetFactory.
RCP< SmootherPrototype > sBelos_
size_t getNodeSmootherComplexity() const
Get a rough estimate of cost per iteration.
RCP< SmootherPrototype > sStratimikos_
RCP< SmootherPrototype > s_
RCP< SmootherPrototype > sEpetra_
Smoother.
RCP< SmootherPrototype > sRefMaxwell_
void DeclareInput(Level &currentLevel) const
Input.
std::string type_
amesos1/2-specific key phrase that denote smoother type
RCP< SmootherPrototype > sTpetra_
Class that holds all level-specific information.
Base class for smoother prototypes.
Namespace for MueLu classes and methods.