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
63d03f4e
Commit
63d03f4e
authored
Apr 06, 2016
by
Chris Cantwell
Browse files
Fix for assembly map array initialisation bug.
parent
b720cadb
Changes
1
Hide whitespace changes
Inline
Side-by-side
library/MultiRegions/AssemblyMap/AssemblyMapCG.cpp
View file @
63d03f4e
...
...
@@ -2468,7 +2468,7 @@ namespace Nektar
Array
<
OneD
,
const
NekDouble
>
local
;
if
(
global
.
data
()
==
loc
.
data
())
{
local
=
Array
<
OneD
,
NekDouble
>
(
loc
al
.
num_elements
(),
loc
al
.
data
());
local
=
Array
<
OneD
,
NekDouble
>
(
loc
.
num_elements
(),
loc
.
data
());
}
else
{
...
...
Chris Cantwell
@ccantwel
mentioned in commit
c9d6d377
·
Apr 18, 2016
mentioned in commit
c9d6d377
mentioned in commit c9d6d377f412e0e73b213361dce4624826b7d9d8
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