*/
/**
- * Implementation of a sequential dense matrix class based on PETSC. All the
+ * Implementation of a sequential dense matrix class based on PETSc. All the
* functionality is actually in the base class, except for the calls to
* generate a sequential dense matrix. This is possible since PETSc only
* works on an abstract matrix type and internally distributes to functions
/**
- * Implementation of a parallel sparse matrix class based on PETSC, with
+ * Implementation of a parallel sparse matrix class based on PETSc, with
* rows of the matrix distributed across an MPI network. All the
* functionality is actually in the base class, except for the calls to
* generate a parallel sparse matrix. This is possible since PETSc only
{
/**
* Constructor. (Default values taken from function PCCreate_LU of the
- * PetSC lib.)
+ * PETSc lib.)
*/
AdditionalData (const double pivoting = 1.e-6,
const double zero_pivot = 1.e-12,
/**
* Determines, when Pivoting is done during LU decomposition. 0.0
- * indicates no pivoting, and 1.0 complete pivoting. Confer PetSC manual
+ * indicates no pivoting, and 1.0 complete pivoting. Confer PETSc manual
* for more details.
*/
double pivoting;
/**
- * Size at which smaller pivots are declared to be zero. Confer PetSC
+ * Size at which smaller pivots are declared to be zero. Confer PETSc
* manual for more details.
*/
double zero_pivot;
namespace PETScWrappers
{
/**
- * Implementation of a sequential sparse matrix class based on PETSC. All
+ * Implementation of a sequential sparse matrix class based on PETSc. All
* the functionality is actually in the base class, except for the calls to
* generate a sequential sparse matrix. This is possible since PETSc only
* works on an abstract matrix type and internally distributes to functions