#include <unordered_map>
#include <functional>
#include <memory>
#include <dune/common/parametertree.hh>
#include <dune/common/singleton.hh>
#include <dune/istl/common/registry.hh>
#include <dune/istl/solver.hh>
Go to the source code of this file.
|
template<class M , class X , class Y > |
using | Dune::DirectSolverSignature = std::shared_ptr< InverseOperator< X, Y > >(const M &, const ParameterTree &) |
|
template<class M , class X , class Y > |
using | Dune::DirectSolverFactory = Singleton< ParameterizedObjectFactory< DirectSolverSignature< M, X, Y > >> |
|
template<class M , class X , class Y > |
using | Dune::PreconditionerSignature = std::shared_ptr< Preconditioner< X, Y > >(const M &, const ParameterTree &) |
|
template<class M , class X , class Y > |
using | Dune::PreconditionerFactory = Singleton< ParameterizedObjectFactory< PreconditionerSignature< M, X, Y > >> |
|
template<class X , class Y > |
using | Dune::IterativeSolverSignature = std::shared_ptr< InverseOperator< X, Y > >(const std::shared_ptr< LinearOperator< X, Y > > &, const std::shared_ptr< ScalarProduct< X > > &, const std::shared_ptr< Preconditioner< X, Y > >, const ParameterTree &) |
|
template<class X , class Y > |
using | Dune::IterativeSolverFactory = Singleton< ParameterizedObjectFactory< IterativeSolverSignature< X, Y > >> |
|
|
template<template< class, class, class, int >class Preconditioner, int l = 1> |
auto | Dune::default_preconditoner_BL_creator () |
|
template<template< class, class, class >class Preconditioner> |
auto | Dune::default_preconditoner_creator () |
|
template<template< class... >class Solver> |
auto | Dune::default_iterative_solver_creator () |
|
template<class Operator > |
std::shared_ptr< InverseOperator< typename Operator::domain_type, typename Operator::range_type > > | Dune::getSolverFromFactory (std::shared_ptr< Operator > op, const ParameterTree &config, std::shared_ptr< Preconditioner< typename Operator::domain_type, typename Operator::range_type >> prec=nullptr) |
| Instanciates an InverseOperator from an Operator and a configuration given in a ParameterTree. More...
|
|
◆ DUNE_REGISTER_DIRECT_SOLVER
#define DUNE_REGISTER_DIRECT_SOLVER |
( |
|
name, |
|
|
|
... |
|
) |
| registry_put(DirectSolverTag, name, __VA_ARGS__) |
◆ DUNE_REGISTER_ITERATIVE_SOLVER
#define DUNE_REGISTER_ITERATIVE_SOLVER |
( |
|
name, |
|
|
|
... |
|
) |
| registry_put(IterativeSolverTag, name, __VA_ARGS__) |
◆ DUNE_REGISTER_PRECONDITIONER
#define DUNE_REGISTER_PRECONDITIONER |
( |
|
name, |
|
|
|
... |
|
) |
| registry_put(PreconditionerTag, name, __VA_ARGS__) |