1 #ifndef __Teko_MLPrecondtionerFactory_hpp__
2 #define __Teko_MLPrecondtionerFactory_hpp__
4 #include "Teko_BlockPreconditionerFactory.hpp"
6 #include "ml_include.h"
7 #include "ml_operator.h"
10 class MultiLevelPreconditioner;
21 Teuchos::RCP<ML_Epetra::MultiLevelPreconditioner>
23 const std::vector<Teuchos::RCP<const Teuchos::ParameterList> > & coarseningParams);
47 static void cleanup_ML_Comm(ML_Comm * mlComm);
48 static void cleanup_ML_Operator(ML_Operator * mlComm);
51 Teuchos::RCP<ML_Comm> mlComm_;
52 Teuchos::RCP<ML_Operator> mlOp_;
54 std::vector<Epetra_RowMatrix*> diagonalOps_;
55 Teuchos::RCP<ML_Epetra::MultiLevelPreconditioner> mlPreconditioner_;
90 std::vector<Teuchos::RCP<const Teuchos::ParameterList> > coarseningParams_;
91 Teuchos::ParameterList mainParams_;
void setIsFilled(bool value)
Set if ML internals been constructed yet.
void fillMLPreconditionerState(const BlockedLinearOp &blo, MLPreconditionerState &mlState) const
Fills an ML preconditioner state object.
void initializeFromParameterList(const Teuchos::ParameterList &settings)
This function builds the internals of the preconditioner factory from a parameter list...
Class that constructs and returns an ML preconditioner object that is capable of doing block smoothin...
Abstract class which block preconditioner factories in Teko should be based on.
void setAggregationMatrices(const std::vector< Epetra_RowMatrix * > &diags)
Set matrices to build multigrid hierarcy from.
Contains operator internals need for ML.
An implementation of a state object for block preconditioners.
Teuchos::RCP< ML_Epetra::MultiLevelPreconditioner > constructMLPreconditioner(const Teuchos::ParameterList &mainList, const std::vector< Teuchos::RCP< const Teuchos::ParameterList > > &coarseningParams)
Build an ML preconditioner object using the set of coarsening parameters.
virtual LinearOp buildPreconditionerOperator(BlockedLinearOp &blo, BlockPreconditionerState &state) const
Function that is called to build the preconditioner for the linear operator that is passed in...
bool isFilled() const
Has this object been filled yet.
void setMLComm(ML_Comm *comm)
set ML Comm pointer...it will be automatically cleaned up
void setMLOperator(ML_Operator *op)
set ML Operator pointer...it will be automatically cleaned up
virtual Teuchos::RCP< PreconditionerState > buildPreconditionerState() const
Function that permits the construction of an arbitrary PreconditionerState object.