Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gmsh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Larry Price
gmsh
Commits
d21b356a
Commit
d21b356a
authored
14 years ago
by
Jonathan Lambrechts
Browse files
Options
Downloads
Patches
Plain Diff
linearSystemPETSc : disable linearSystemPETScBlockDouble if pestc uses
complex numbers
parent
0b4486fd
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Solver/linearSystemPETSc.cpp
+2
-1
2 additions, 1 deletion
Solver/linearSystemPETSc.cpp
Solver/linearSystemPETSc.h
+4
-2
4 additions, 2 deletions
Solver/linearSystemPETSc.h
with
6 additions
and
3 deletions
Solver/linearSystemPETSc.cpp
+
2
−
1
View file @
d21b356a
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
Solver/linearSystemPETSc.h
+
4
−
2
View file @
d21b356a
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment