Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
openfpm_numerics
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sbalzarini Lab
Software
Parallel Computing
OpenFPM
openfpm_numerics
Commits
d2c2da50
Commit
d2c2da50
authored
3 years ago
by
jstark
Browse files
Options
Downloads
Patches
Plain Diff
Changed return types to auto to make them generic.
parent
004220bb
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/FiniteDifference/FD_simple.hpp
+3
-3
3 additions, 3 deletions
src/FiniteDifference/FD_simple.hpp
with
3 additions
and
3 deletions
src/FiniteDifference/FD_simple.hpp
+
3
−
3
View file @
d2c2da50
...
...
@@ -18,7 +18,7 @@
* @return Forward finite difference for the property under index Field on the current node with index key.
*/
template
<
size_t
Field
,
typename
gridtype
,
typename
keytype
>
double
FD_forward
(
gridtype
&
grid
,
keytype
&
key
,
size_t
d
)
auto
FD_forward
(
gridtype
&
grid
,
keytype
&
key
,
size_t
d
)
{
return
(
grid
.
template
get
<
Field
>
(
key
.
move
(
d
,
1
))
-
grid
.
template
get
<
Field
>
(
key
))
/
grid
.
getSpacing
()[
d
];
}
...
...
@@ -33,7 +33,7 @@ double FD_forward(gridtype & grid, keytype & key, size_t d)
* @return Backward finite difference for the property under index Field on the current node with index key.
*/
template
<
size_t
Field
,
typename
gridtype
,
typename
keytype
>
double
FD_backward
(
gridtype
&
grid
,
keytype
&
key
,
size_t
d
)
auto
FD_backward
(
gridtype
&
grid
,
keytype
&
key
,
size_t
d
)
{
return
(
grid
.
template
get
<
Field
>
(
key
)
-
grid
.
template
get
<
Field
>
(
key
.
move
(
d
,
-
1
)))
/
grid
.
getSpacing
()[
d
];
}
...
...
@@ -50,7 +50,7 @@ double FD_backward(gridtype & grid, keytype & key, size_t d)
* @return Partial central finite difference for dimension d of Field on the current node with index key.
*/
template
<
size_t
Field
,
typename
gridtype
,
typename
keytype
>
double
FD_central
(
gridtype
&
grid
,
keytype
&
key
,
size_t
d
)
auto
FD_central
(
gridtype
&
grid
,
keytype
&
key
,
size_t
d
)
{
return
(
grid
.
template
get
<
Field
>(
key
.
move
(
d
,
1
))
-
grid
.
template
get
<
Field
>(
key
.
move
(
d
,
-
1
)))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment