Skip to content
Snippets Groups Projects
Commit a051690f authored by Anthony Royer's avatar Anthony Royer
Browse files

Merge branch 'petsc3.18_fix' into 'master'

MatVecProduct must start with PetscFunctionBegin

See merge request !16
parents e76383be fc462928
No related branches found
No related tags found
1 merge request!16MatVecProduct must start with PetscFunctionBegin
Pipeline #10073 passed
......@@ -1230,8 +1230,10 @@ namespace gmshddm
}
template< class T_Scalar >
static int MatVectProduct(Mat A, Vec X, Vec Y)
int MatVectProduct(Mat A, Vec X, Vec Y)
{
PetscFunctionBegin;
const int outerVerbosity = gmshfem::common::Options::instance()->verbose;
const int innerVerbosity = (outerVerbosity != 0 ? outerVerbosity - 1 : 0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment