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
ift
nifty_gridder
Commits
7575f488
Commit
7575f488
authored
Aug 22, 2019
by
Martin Reinecke
Browse files
fixes
parent
080eaf15
Changes
1
Hide whitespace changes
Inline
Side-by-side
nifty_gridder.cc
View file @
7575f488
...
...
@@ -1569,9 +1569,14 @@ cout << endl;
fct
=
1.
/
(
w_supp
*
fct
);
size_t
i2
=
nx_dirty
-
i
,
j2
=
ny_dirty
-
j
;
accum
[
ny_dirty
*
i
+
j
]
*=
fct
;
accum
[
ny_dirty
*
i2
+
j
]
*=
fct
;
accum
[
ny_dirty
*
i2
+
j2
]
*=
fct
;
accum
[
ny_dirty
*
i
+
j2
]
*=
fct
;
if
((
i
>
0
)
&&
(
i
<
i2
))
{
accum
[
ny_dirty
*
i2
+
j
]
*=
fct
;
if
((
j
>
0
)
&&
(
j
<
j2
))
accum
[
ny_dirty
*
i2
+
j2
]
*=
fct
;
}
if
((
j
>
0
)
&&
(
j
<
j2
))
accum
[
ny_dirty
*
i
+
j2
]
*=
fct
;
}
}
}
...
...
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