Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mpim-sw
cdo
Commits
84012105
Commit
84012105
authored
Mar 19, 2020
by
Uwe Schulzweida
Browse files
Removed restrict.
parent
e970df0a
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/vertical_interp.cc
View file @
84012105
...
...
@@ -310,7 +310,7 @@ vertical_interp_X(const T *restrict gt, T *pt, const T *hyb_press, const int *nx
{
auto
pres
=
plev
[
lp
];
const
int
*
restrict
nxl
=
nx
+
lp
*
ngp
;
auto
restrict
ptl
=
pt
+
lp
*
ngp
;
auto
ptl
=
pt
+
lp
*
ngp
;
for
(
long
i
=
0
;
i
<
ngp
;
i
++
)
{
ptl
[
i
]
=
vertical_interp_X_kernel
(
gt
,
hyb_press
,
nxl
[
i
]
*
ngp
+
i
,
pres
,
ngp
,
nhlev
,
missval
);
...
...
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