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
iwr
amdis
Commits
5d9744da
Commit
5d9744da
authored
Aug 17, 2012
by
Thomas Witkowski
Browse files
Fixed compile bug.
parent
7b1208e2
Changes
1
Hide whitespace changes
Inline
Side-by-side
AMDiS/src/parallel/PetscSolverFeti.cc
View file @
5d9744da
...
...
@@ -501,10 +501,10 @@ namespace AMDiS {
for
(
DofContainer
::
iterator
it
=
allBoundaryDofs
.
begin
();
it
!=
allBoundaryDofs
.
end
();
++
it
)
if
(
meshDistributor
->
getDofMap
()[
feSpace
].
isRankDof
(
*
it
))
interfaceDofMap
[
feSpace
].
insertRankDof
(
*
it
);
if
(
meshDistributor
->
getDofMap
()[
feSpace
].
isRankDof
(
*
*
it
))
interfaceDofMap
[
feSpace
].
insertRankDof
(
*
*
it
);
else
interfaceDofMap
[
feSpace
].
insertNonRankDof
(
*
it
);
interfaceDofMap
[
feSpace
].
insertNonRankDof
(
*
*
it
);
}
...
...
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