Belos
Version of the Day
Toggle main menu visibility
Loading...
Searching...
No Matches
src
BelosSolverFactory_Generic.hpp
Go to the documentation of this file.
1
//@HEADER
2
// ************************************************************************
3
//
4
// Belos: Block Linear Solvers Package
5
// Copyright 2004 Sandia Corporation
6
//
7
// Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
8
// the U.S. Government retains certain rights in this software.
9
//
10
// Redistribution and use in source and binary forms, with or without
11
// modification, are permitted provided that the following conditions are
12
// met:
13
//
14
// 1. Redistributions of source code must retain the above copyright
15
// notice, this list of conditions and the following disclaimer.
16
//
17
// 2. Redistributions in binary form must reproduce the above copyright
18
// notice, this list of conditions and the following disclaimer in the
19
// documentation and/or other materials provided with the distribution.
20
//
21
// 3. Neither the name of the Corporation nor the names of the
22
// contributors may be used to endorse or promote products derived from
23
// this software without specific prior written permission.
24
//
25
// THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
26
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
29
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
30
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
31
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
32
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
34
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36
//
37
// Questions? Contact Michael A. Heroux (maherou@sandia.gov)
38
//
39
// ************************************************************************
40
//@HEADER
41
42
#ifndef BELOSSOLVERFACTORY_GENERIC_HPP
43
#define BELOSSOLVERFACTORY_GENERIC_HPP
44
45
// The GenericSolverFactory is different from the others because it is
46
// manually included and registers all the solvers on construction. It exists
47
// for cases which are not covered by the other solver types.
48
#include "
BelosSolverFactory.hpp
"
49
50
#include "
BelosBiCGStabSolMgr.hpp
"
51
#include "
BelosBlockCGSolMgr.hpp
"
52
#include "
BelosBlockGmresSolMgr.hpp
"
53
#include "
BelosFixedPointSolMgr.hpp
"
54
#include "
BelosGCRODRSolMgr.hpp
"
55
#include "
BelosLSQRSolMgr.hpp
"
56
#include "
BelosMinresSolMgr.hpp
"
57
#include "
BelosPCPGSolMgr.hpp
"
58
#include "
BelosPseudoBlockCGSolMgr.hpp
"
59
#include "
BelosPseudoBlockGmresSolMgr.hpp
"
60
#include "
BelosPseudoBlockTFQMRSolMgr.hpp
"
61
#include "
BelosRCGSolMgr.hpp
"
62
#include "
BelosTFQMRSolMgr.hpp
"
63
64
namespace
Belos
{
65
66
template
<
class
SC,
class
MV,
class
OP>
67
class
GenericSolverFactory
:
public
Impl::SolverFactoryParent
<SC, MV, OP>
68
{
69
public
:
70
GenericSolverFactory
() {
71
Impl::registerSolverSubclassForTypes<BiCGStabSolMgr<SC,MV,OP>
, SC, MV, OP> (
"BICGSTAB"
);
72
Impl::registerSolverSubclassForTypes<BlockCGSolMgr<SC,MV,OP>
, SC, MV, OP> (
"BLOCK CG"
);
73
Impl::registerSolverSubclassForTypes<BlockGmresSolMgr<SC,MV,OP>
, SC, MV, OP> (
"BLOCK GMRES"
);
74
Impl::registerSolverSubclassForTypes<FixedPointSolMgr<SC,MV,OP>
, SC, MV, OP> (
"FIXED POINT"
);
75
Impl::registerSolverSubclassForTypes<GCRODRSolMgr<SC,MV,OP>
, SC, MV, OP> (
"GCRODR"
);
76
Impl::registerSolverSubclassForTypes<LSQRSolMgr<SC,MV,OP>
, SC, MV, OP> (
"LSQR"
);
77
Impl::registerSolverSubclassForTypes<MinresSolMgr<SC,MV,OP>
, SC, MV, OP> (
"MINRES"
);
78
Impl::registerSolverSubclassForTypes<PCPGSolMgr<SC,MV,OP>
, SC, MV, OP> (
"PCPG"
);
79
Impl::registerSolverSubclassForTypes<PseudoBlockCGSolMgr<SC,MV,OP>
, SC, MV, OP> (
"PSEUDOBLOCK CG"
);
80
Impl::registerSolverSubclassForTypes<PseudoBlockGmresSolMgr<SC,MV,OP>
, SC, MV, OP> (
"PSEUDOBLOCK GMRES"
);
81
Impl::registerSolverSubclassForTypes<PseudoBlockTFQMRSolMgr<SC,MV,OP>
, SC, MV, OP> (
"PSEUDOBLOCK TFQMR"
);
82
Impl::registerSolverSubclassForTypes<RCGSolMgr<SC,MV,OP>
, SC, MV, OP> (
"RCG"
);
83
Impl::registerSolverSubclassForTypes<TFQMRSolMgr<SC,MV,OP>
, SC, MV, OP> (
"TFQMR"
);
84
};
85
};
86
87
}
// namespace Belos
88
89
#endif
// BELOSSOLVERFACTORY_GENERIC_HPP
BelosBiCGStabSolMgr.hpp
The Belos::BiCGStabSolMgr provides a solver manager for the BiCGStab linear solver.
BelosBlockCGSolMgr.hpp
The Belos::BlockCGSolMgr provides a solver manager for the BlockCG linear solver.
BelosBlockGmresSolMgr.hpp
The Belos::BlockGmresSolMgr provides a solver manager for the BlockGmres linear solver.
BelosFixedPointSolMgr.hpp
The Belos::FixedPointSolMgr provides a solver manager for the FixedPoint linear solver.
BelosGCRODRSolMgr.hpp
Declaration and definition of Belos::GCRODRSolMgr, which implements the GCRODR (recycling GMRES) solv...
BelosLSQRSolMgr.hpp
LSQRSolMgr: interface to the LSQR method.
BelosMinresSolMgr.hpp
Solver manager for the MINRES linear solver.
BelosPCPGSolMgr.hpp
Declaration and definition of Belos::PCPGSolMgr (PCPG iterative linear solver).
BelosPseudoBlockCGSolMgr.hpp
The Belos::PseudoBlockCGSolMgr provides a solver manager for the BlockCG linear solver.
BelosPseudoBlockGmresSolMgr.hpp
The Belos::PseudoBlockGmresSolMgr provides a solver manager for the BlockGmres linear solver.
BelosPseudoBlockTFQMRSolMgr.hpp
The Belos::PseudoBlockTFQMRSolMgr provides a solver manager for the pseudo-block TFQMR linear solver.
BelosRCGSolMgr.hpp
The Belos::RCGSolMgr provides a solver manager for the RCG (Recycling Conjugate Gradient) linear solv...
BelosSolverFactory.hpp
BelosTFQMRSolMgr.hpp
The Belos::TFQMRSolMgr provides a solver manager for the TFQMR linear solver.
Belos::GenericSolverFactory::GenericSolverFactory
GenericSolverFactory()
Definition
BelosSolverFactory_Generic.hpp:70
Belos::Impl::SolverFactoryParent
Specializations of Belos::SolverFactory may inherit from this class to get basic SolverFactory functi...
Definition
BelosSolverFactory.hpp:97
Belos::Impl::registerSolverSubclassForTypes
void registerSolverSubclassForTypes(const std::string &solverName)
Definition
BelosSolverFactory.hpp:268
Belos
Definition
Belos_Details_EBelosSolverType.cpp:45
Generated for Belos by
1.17.0