Reference documentation for deal.II version 9.1.1
|
#include <deal.II/lac/petsc_precondition.h>
Classes | |
struct | AdditionalData |
Public Member Functions | |
PreconditionNone ()=default | |
PreconditionNone (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 |
Private Attributes | |
AdditionalData | additional_data |
Additional Inherited Members | |
Protected Member Functions inherited from PETScWrappers::PreconditionerBase | |
void | create_pc () |
operator Mat () const | |
Protected Attributes inherited from PETScWrappers::PreconditionerBase | |
PC | pc |
Mat | matrix |
A class that implements a non-preconditioned method.
Definition at line 923 of file petsc_precondition.h.
|
default |
Empty Constructor. You need to call initialize() before using this object.
PETScWrappers::PreconditionNone::PreconditionNone | ( | 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. The matrix is completely ignored in computations.
Definition at line 660 of file petsc_precondition.cc.
void PETScWrappers::PreconditionNone::initialize | ( | const MatrixBase & | matrix, |
const AdditionalData & | additional_data = AdditionalData() |
||
) |
Initialize 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. The matrix is completely ignored in computations.
Definition at line 668 of file petsc_precondition.cc.
|
private |
Store a copy of the flags for this particular preconditioner.
Definition at line 962 of file petsc_precondition.h.