21 #ifndef bempp_abstract_operator_pseudoinverse_hpp
22 #define bempp_abstract_operator_pseudoinverse_hpp
24 #include "abstract_boundary_operator.hpp"
25 #include "abstract_boundary_operator_id.hpp"
26 #include "boundary_operator.hpp"
32 template <
typename ResultType>
class DiscreteDenseBoundaryOperator;
33 template <
typename ResultType>
class DiscreteSparseBoundaryOperator;
34 template <
typename BasisFunctionType>
class Space;
37 template <
typename BasisFunctionType,
typename ResultType>
44 virtual size_t hash()
const;
45 virtual void dump()
const;
49 shared_ptr<const AbstractBoundaryOperatorId> m_operatorToInvertId;
55 template <
typename BasisFunctionType_,
typename ResultType_>
82 virtual shared_ptr<DiscreteBoundaryOperator<ResultType_> >
87 shared_ptr<DiscreteBoundaryOperator<ResultType_> >
88 assembleWeakFormForSparseOperator(
91 wrappedDiscreteOp)
const;
92 shared_ptr<DiscreteBoundaryOperator<ResultType_> >
93 assembleWeakFormForDenseOperator(
96 wrappedDiscreteOp)
const;
100 shared_ptr<const AbstractBoundaryOperatorId> m_id;
111 template <
typename BasisFunctionType,
typename ResultType>
119 template <
typename BasisFunctionType,
typename ResultType>
Discrete boundary operator stored as a sparse matrix.
Definition: discrete_sparse_boundary_operator.hpp:56
Discrete boundary operator stored as a dense matrix.
Definition: discrete_dense_boundary_operator.hpp:43
Base::BasisFunctionType BasisFunctionType
Type of the values of the (components of the) basis functions into which functions acted upon by the ...
Definition: abstract_boundary_operator_pseudoinverse.hpp:62
Base class for quadrature strategies.
Definition: quadrature_strategy.hpp:242
Function space.
Definition: assembled_potential_operator.hpp:35
#define BEMPP_DEPRECATED
Macro used to mark deprecated functions or classes.
Definition: deprecated.hpp:41
Base::ResultType ResultType
Type used to represent elements of the weak form of the operator.
Definition: abstract_boundary_operator_pseudoinverse.hpp:64
Assembly context.
Definition: context.hpp:30
BasisFunctionType_ BasisFunctionType
Type of the values of the (components of the) basis functions into which functions acted upon by the ...
Definition: abstract_boundary_operator.hpp:95
Definition: abstract_boundary_operator_pseudoinverse.hpp:38
Operator acting on functions defined on a surface.
Definition: boundary_operator.hpp:63
Abstract (non-discretized) boundary operator.
Definition: abstract_boundary_operator.hpp:90
ScalarTraits< ResultType >::RealType CoordinateType
Type used to represent coordinates.
Definition: abstract_boundary_operator.hpp:99
Inverse or pseudoinverse of an abstract boundary operator.
Definition: abstract_boundary_operator_pseudoinverse.hpp:56
shared_ptr< const Space< BasisFunctionType > > dualToRange() const
Dual to range.
Definition: abstract_boundary_operator.cpp:142
virtual BEMPP_DEPRECATED shared_ptr< const AbstractBoundaryOperatorId > id() const
Return the identifier of this operator.
Definition: abstract_boundary_operator_pseudoinverse.cpp:117
ResultType_ ResultType
Type used to represent elements of the weak form of the operator.
Definition: abstract_boundary_operator.hpp:97
AbstractBoundaryOperatorPseudoinverse(const BoundaryOperator< BasisFunctionType, ResultType > &boundaryOp)
Construct a (pseudo)inverse of boundaryOp.
Definition: abstract_boundary_operator_pseudoinverse.cpp:54
Base::CoordinateType CoordinateType
Type used to represent coordinates.
Definition: abstract_boundary_operator_pseudoinverse.hpp:66
virtual shared_ptr< DiscreteBoundaryOperator< ResultType_ > > assembleWeakFormImpl(const Context< BasisFunctionType, ResultType > &context) const
Assemble and return the operator's weak form.
Definition: abstract_boundary_operator_pseudoinverse.cpp:125
virtual bool isLocal() const
Return whether this operator is local.
Definition: abstract_boundary_operator_pseudoinverse.cpp:110
Base class for identifiers of an abstract boundary operator.
Definition: abstract_boundary_operator_id.hpp:21
Base::QuadratureStrategy QuadratureStrategy
Type of the appropriate instantiation of Fiber::QuadratureStrategy.
Definition: abstract_boundary_operator_pseudoinverse.hpp:68