Skip to content
Snippets Groups Projects
Commit 669802e6 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

fix compile

parent 19c91ecf
No related branches found
No related tags found
No related merge requests found
...@@ -66,8 +66,8 @@ class linearSystemPETSc : public linearSystem<scalar> { ...@@ -66,8 +66,8 @@ class linearSystemPETSc : public linearSystem<scalar> {
_try(KSPSetTolerances(_ksp, 1.e-8, PETSC_DEFAULT, PETSC_DEFAULT, PETSC_DEFAULT)); _try(KSPSetTolerances(_ksp, 1.e-8, PETSC_DEFAULT, PETSC_DEFAULT, PETSC_DEFAULT));
// override the default options with the ones from the option // override the default options with the ones from the option
// database (if any) // database (if any)
if (linearSystemBase::_parameters.count("petscPrefix")) if (this->_parameters.count("petscPrefix"))
_try(KSPAppendOptionsPrefix(_ksp, linearSystemBase::_parameters["petscPrefix"].c_str())); _try(KSPAppendOptionsPrefix(_ksp, this->_parameters["petscPrefix"].c_str()));
_try(KSPSetFromOptions(_ksp)); _try(KSPSetFromOptions(_ksp));
_kspAllocated = true; _kspAllocated = true;
} }
...@@ -126,10 +126,10 @@ class linearSystemPETSc : public linearSystem<scalar> { ...@@ -126,10 +126,10 @@ class linearSystemPETSc : public linearSystem<scalar> {
_try(MatSetSizes(_a, nbRows, nbRows, PETSC_DETERMINE, PETSC_DETERMINE)); _try(MatSetSizes(_a, nbRows, nbRows, PETSC_DETERMINE, PETSC_DETERMINE));
// override the default options with the ones from the option // override the default options with the ones from the option
// database (if any) // database (if any)
if (linearSystemBase::_parameters.count("petscOptions")) if (this->_parameters.count("petscOptions"))
_try(PetscOptionsInsertString(linearSystemBase::_parameters["petscOptions"].c_str())); _try(PetscOptionsInsertString(this->_parameters["petscOptions"].c_str()));
if (linearSystemBase::_parameters.count("petscPrefix")) if (this->_parameters.count("petscPrefix"))
_try(MatAppendOptionsPrefix(_a, linearSystemBase::_parameters["petscPrefix"].c_str())); _try(MatAppendOptionsPrefix(_a, this->_parameters["petscPrefix"].c_str()));
_try(MatSetFromOptions(_a)); _try(MatSetFromOptions(_a));
_try(MatGetOwnershipRange(_a, &_localRowStart, &_localRowEnd)); _try(MatGetOwnershipRange(_a, &_localRowStart, &_localRowEnd));
_try(MatGetSize(_a, &_globalSize, &_localSize)); _try(MatGetSize(_a, &_globalSize, &_localSize));
...@@ -138,8 +138,8 @@ class linearSystemPETSc : public linearSystem<scalar> { ...@@ -138,8 +138,8 @@ class linearSystemPETSc : public linearSystem<scalar> {
_try(VecSetSizes(_x, nbRows, PETSC_DETERMINE)); _try(VecSetSizes(_x, nbRows, PETSC_DETERMINE));
// override the default options with the ones from the option // override the default options with the ones from the option
// database (if any) // database (if any)
if (linearSystemBase::_parameters.count("petscPrefix")) if (this->_parameters.count("petscPrefix"))
_try(VecAppendOptionsPrefix(_x, linearSystemBase::_parameters["petscPrefix"].c_str())); _try(VecAppendOptionsPrefix(_x, this->_parameters["petscPrefix"].c_str()));
_try(VecSetFromOptions(_x)); _try(VecSetFromOptions(_x));
_try(VecDuplicate(_x, &_b)); _try(VecDuplicate(_x, &_b));
_isAllocated = true; _isAllocated = true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment