Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Backofen, Rainer
amdis
Commits
c9ae1359
Commit
c9ae1359
authored
Oct 25, 2012
by
Thomas Witkowski
Browse files
Fixed problem with new KSP solver interface.
parent
a88fe3ad
Changes
5
Hide whitespace changes
Inline
Side-by-side
AMDiS/src/parallel/ParallelDofMapping.cc
View file @
c9ae1359
...
...
@@ -213,7 +213,7 @@ namespace AMDiS {
levelData
(
NULL
),
dofComm
(
NULL
),
globalMapping
(
true
),
needMatIndexFromGlobal
(
fals
e
),
needMatIndexFromGlobal
(
tru
e
),
nRankDofs
(
1
),
nLocalDofs
(
1
),
nOverallDofs
(
1
),
...
...
AMDiS/src/parallel/PetscSolverGlobalMatrix.cc
View file @
c9ae1359
...
...
@@ -605,7 +605,7 @@ namespace AMDiS {
}
void
PetscSolverGlobalMatrix
::
initSolver
(
KSP
ksp
)
void
PetscSolverGlobalMatrix
::
initSolver
(
KSP
&
ksp
)
{
FUNCNAME
(
"PetscSolverGlobalMatrix::initSolver()"
);
...
...
AMDiS/src/parallel/PetscSolverGlobalMatrix.h
View file @
c9ae1359
...
...
@@ -88,7 +88,7 @@ namespace AMDiS {
*/
void
createFieldSplit
(
PC
pc
,
string
splitName
,
vector
<
int
>
&
components
);
virtual
void
initSolver
(
KSP
ksp
);
virtual
void
initSolver
(
KSP
&
ksp
);
virtual
void
exitSolver
(
KSP
ksp
);
...
...
AMDiS/src/parallel/PetscSolverNavierStokes.cc
View file @
c9ae1359
...
...
@@ -18,7 +18,7 @@ namespace AMDiS {
using
namespace
std
;
void
PetscSolverNavierStokes
::
initSolver
(
KSP
ksp
)
void
PetscSolverNavierStokes
::
initSolver
(
KSP
&
ksp
)
{
FUNCNAME
(
"PetscSolverNavierStokes::initSolver()"
);
...
...
AMDiS/src/parallel/PetscSolverNavierStokes.h
View file @
c9ae1359
...
...
@@ -37,7 +37,7 @@ namespace AMDiS {
{}
protected:
void
initSolver
(
KSP
ksp
);
void
initSolver
(
KSP
&
ksp
);
void
initPreconditioner
(
PC
pc
);
};
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment