Reference documentation for deal.II version 8.5.1
|
#include <deal.II/lac/petsc_precondition.h>
Classes | |
struct | AdditionalData |
Public Member Functions | |
PreconditionILU () | |
PreconditionILU (const MatrixBase &matrix, const AdditionalData &additional_data=AdditionalData()) | |
void | initialize (const MatrixBase &matrix, const AdditionalData &additional_data=AdditionalData()) |
Public Member Functions inherited from PETScWrappers::PreconditionerBase | |
PreconditionerBase () | |
virtual | ~PreconditionerBase () |
void | clear () |
void | vmult (VectorBase &dst, const VectorBase &src) const |
const PC & | get_pc () const |
Protected Attributes | |
AdditionalData | additional_data |
Protected Attributes inherited from PETScWrappers::PreconditionerBase | |
PC | pc |
Mat | matrix |
Additional Inherited Members | |
Protected Member Functions inherited from PETScWrappers::PreconditionerBase | |
void | create_pc () |
operator Mat () const | |
A class that implements the interface to use the PETSc ILU preconditioner.
Definition at line 513 of file petsc_precondition.h.
PETScWrappers::PreconditionILU::PreconditionILU | ( | ) |
Empty Constructor. You need to call initialize() before using this object.
Definition at line 419 of file petsc_precondition.cc.
PETScWrappers::PreconditionILU::PreconditionILU | ( | const MatrixBase & | matrix, |
const AdditionalData & | additional_data = AdditionalData() |
||
) |
Constructor. Take the matrix which is used to form the preconditioner, and additional flags if there are any.
Definition at line 423 of file petsc_precondition.cc.
void PETScWrappers::PreconditionILU::initialize | ( | const MatrixBase & | matrix, |
const AdditionalData & | additional_data = AdditionalData() |
||
) |
Initializes the preconditioner object and calculate all data that is necessary for applying it in a solver. This function is automatically called when calling the constructor with the same arguments and is only used if you create the preconditioner without arguments.
Definition at line 431 of file petsc_precondition.cc.
|
protected |
Store a copy of the flags for this particular preconditioner.
Definition at line 559 of file petsc_precondition.h.