Skip to content
Snippets Groups Projects
Commit d21b356a authored by Jonathan Lambrechts's avatar Jonathan Lambrechts
Browse files

linearSystemPETSc : disable linearSystemPETScBlockDouble if pestc uses

complex numbers
parent 0b4486fd
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
#include "fullMatrix.h" #include "fullMatrix.h"
#include <stdlib.h> #include <stdlib.h>
#include "GmshMessage.h" #include "GmshMessage.h"
#if not defined(PETSC_USE_COMPLEX)
void linearSystemPETScBlockDouble::_kspCreate() { void linearSystemPETScBlockDouble::_kspCreate() {
KSPCreate(PETSC_COMM_WORLD, &_ksp); KSPCreate(PETSC_COMM_WORLD, &_ksp);
if (this->_parameters.count("petscPrefix")) if (this->_parameters.count("petscPrefix"))
...@@ -205,6 +205,7 @@ double linearSystemPETScBlockDouble::normInfRightHandSide() const ...@@ -205,6 +205,7 @@ double linearSystemPETScBlockDouble::normInfRightHandSide() const
VecNorm(_b, NORM_INFINITY, &nor); VecNorm(_b, NORM_INFINITY, &nor);
return nor; return nor;
} }
#endif
#include "Bindings.h" #include "Bindings.h"
void linearSystemPETScRegisterBindings(binding *b) void linearSystemPETScRegisterBindings(binding *b)
......
...@@ -266,6 +266,7 @@ class linearSystemPETSc : public linearSystem<scalar> { ...@@ -266,6 +266,7 @@ class linearSystemPETSc : public linearSystem<scalar> {
class binding; class binding;
void linearSystemPETScRegisterBindings(binding *b); void linearSystemPETScRegisterBindings(binding *b);
#if not defined(PETSC_USE_COMPLEX)
class linearSystemPETScBlockDouble : public linearSystem<fullMatrix<double> > { class linearSystemPETScBlockDouble : public linearSystem<fullMatrix<double> > {
bool _entriesPreAllocated, _isAllocated, _kspAllocated; bool _entriesPreAllocated, _isAllocated, _kspAllocated;
sparsityPattern _sparsity; sparsityPattern _sparsity;
...@@ -290,10 +291,11 @@ class linearSystemPETScBlockDouble : public linearSystem<fullMatrix<double> > { ...@@ -290,10 +291,11 @@ class linearSystemPETScBlockDouble : public linearSystem<fullMatrix<double> > {
double normInfRightHandSide() const; double normInfRightHandSide() const;
linearSystemPETScBlockDouble(); linearSystemPETScBlockDouble();
}; };
#endif
#else #else
/*template <class scalar> template <class scalar>
class linearSystemPETSc : public linearSystem<scalar> { class linearSystemPETSc : public linearSystem<scalar> {
public : public :
linearSystemPETSc() linearSystemPETSc()
...@@ -312,7 +314,7 @@ class linearSystemPETSc : public linearSystem<scalar> { ...@@ -312,7 +314,7 @@ class linearSystemPETSc : public linearSystem<scalar> {
virtual void zeroRightHandSide() {} virtual void zeroRightHandSide() {}
virtual int systemSolve() { return 0; } virtual int systemSolve() { return 0; }
virtual double normInfRightHandSide() const{return 0;} virtual double normInfRightHandSide() const{return 0;}
};*/ };
#endif #endif
......
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