Ginkgo
Generated from pipelines/1330831941 branch based on master. Ginkgo version 1.8.0
A numerical linear algebra library targeting many-core architectures
|
This class represents two levels in a multigrid hierarchy. More...
#include <ginkgo/core/multigrid/multigrid_level.hpp>
Public Member Functions | |
virtual std::shared_ptr< const LinOp > | get_fine_op () const =0 |
Returns the operator on fine level. More... | |
virtual std::shared_ptr< const LinOp > | get_restrict_op () const =0 |
Returns the restrict operator. More... | |
virtual std::shared_ptr< const LinOp > | get_coarse_op () const =0 |
Returns the operator on coarse level. More... | |
virtual std::shared_ptr< const LinOp > | get_prolong_op () const =0 |
Returns the prolong operator. More... | |
This class represents two levels in a multigrid hierarchy.
The MultigridLevel is an interface that allows to get the individual components of multigrid level. Each implementation of a multigrid level should inherit from this interface. Use EnableMultigridLevel<ValueType> to implement this interface with composition by default.
|
pure virtual |
Returns the operator on coarse level.
Implemented in gko::multigrid::EnableMultigridLevel< ValueType >.
|
pure virtual |
Returns the operator on fine level.
Implemented in gko::multigrid::EnableMultigridLevel< ValueType >.
|
pure virtual |
Returns the prolong operator.
Implemented in gko::multigrid::EnableMultigridLevel< ValueType >.
|
pure virtual |
Returns the restrict operator.
Implemented in gko::multigrid::EnableMultigridLevel< ValueType >.