Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
amdis
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Backofen, Rainer
amdis
Commits
c9ae1359
Commit
c9ae1359
authored
Oct 25, 2012
by
Thomas Witkowski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed problem with new KSP solver interface.
parent
a88fe3ad
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
AMDiS/src/parallel/ParallelDofMapping.cc
AMDiS/src/parallel/ParallelDofMapping.cc
+1
-1
AMDiS/src/parallel/PetscSolverGlobalMatrix.cc
AMDiS/src/parallel/PetscSolverGlobalMatrix.cc
+1
-1
AMDiS/src/parallel/PetscSolverGlobalMatrix.h
AMDiS/src/parallel/PetscSolverGlobalMatrix.h
+1
-1
AMDiS/src/parallel/PetscSolverNavierStokes.cc
AMDiS/src/parallel/PetscSolverNavierStokes.cc
+1
-1
AMDiS/src/parallel/PetscSolverNavierStokes.h
AMDiS/src/parallel/PetscSolverNavierStokes.h
+1
-1
No files found.
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
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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