deal.II version GIT relicensing-2167-g9622207b8f 2024-11-21 12:40:00+00:00
|
#include <deal.II/lac/solver_bicgstab.h>
Public Member Functions | |
AdditionalData (const bool exact_residual=true, const double breakdown=std::numeric_limits< typename VectorType::value_type >::min()) | |
Public Attributes | |
bool | exact_residual |
double | breakdown |
There are two possibilities to compute the residual: one is an estimate using the computed value tau
. The other is exact computation using another matrix vector multiplication. This increases the costs of the algorithm, so it is should be set to false whenever the problem allows it.
Bicgstab is susceptible to breakdowns, so we need a parameter telling us, which numbers are considered zero.
Definition at line 93 of file solver_bicgstab.h.
|
inlineexplicit |
Constructor.
The default is to perform an exact residual computation and breakdown parameter is the minimum finite value representable by the value_type of VectorType.
Definition at line 102 of file solver_bicgstab.h.
bool SolverBicgstab< VectorType >::AdditionalData::exact_residual |
Flag for exact computation of residual.
Definition at line 112 of file solver_bicgstab.h.
double SolverBicgstab< VectorType >::AdditionalData::breakdown |
Breakdown threshold.
Definition at line 116 of file solver_bicgstab.h.