Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nektar
Nektar
Commits
710d4f2c
Commit
710d4f2c
authored
May 20, 2016
by
Douglas Serson
Browse files
Fix small bug with MultiLevelStaticCond using periodic boundary conditions
parent
f43d3276
Changes
1
Hide whitespace changes
Inline
Side-by-side
library/MultiRegions/AssemblyMap/AssemblyMapCG.cpp
View file @
710d4f2c
...
...
@@ -498,7 +498,8 @@ namespace Nektar
// we find it, set as Dirichlet with the vertex id gId.
if
(
pIt
->
first
==
meshVertId
)
{
graph
[
0
][
meshVertId
]
=
gId
<
0
?
graphVertId
++
:
gId
;
gId
=
gId
<
0
?
graphVertId
++
:
gId
;
graph
[
0
][
meshVertId
]
=
gId
;
for
(
i
=
0
;
i
<
pIt
->
second
.
size
();
++
i
)
{
...
...
@@ -522,7 +523,8 @@ namespace Nektar
if
(
found
)
{
graph
[
0
][
pIt
->
first
]
=
gId
<
0
?
graphVertId
++
:
gId
;
gId
=
gId
<
0
?
graphVertId
++
:
gId
;
graph
[
0
][
pIt
->
first
]
=
gId
;
for
(
i
=
0
;
i
<
pIt
->
second
.
size
();
++
i
)
{
...
...
Douglas Serson
@d.serson
mentioned in commit
5dd620b1
·
May 24, 2016
mentioned in commit
5dd620b1
mentioned in commit 5dd620b1d342aca45b278334879258d44187df9e
Toggle commit list
Write
Preview
Supports
Markdown
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