-
Notifications
You must be signed in to change notification settings - Fork 106
Port some Hermes-3 finite volume operators (rebased) #3335
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: next
Are you sure you want to change the base?
Changes from all commits
5c6e3a7
3059d12
60f1946
f53b8f3
207802f
a230642
30dc670
fcfe963
b209a5a
e0480fc
7ffc7fa
aa8e5d4
f5ca1d0
12df335
e71eebe
a9366cb
b3983c1
32f4c65
09f7466
e1a15dd
f98d5de
fc98ac4
205d502
6a7c407
268ecfc
f3b36a4
b47343f
d07bde5
6374539
f49c94c
140bf78
84d99b3
1219197
7bb8367
acd9b93
0e6fc75
9b119c8
69dfaad
7b9525c
fb6c016
033d872
2590f7c
957f058
ea71ae2
46d6663
b1068d1
f15f204
d8b2240
9a8ebcb
b6e1b56
82d046a
00048e0
2dd2335
4f2f60a
1adc1fc
a46781a
80d7d34
40e1c2e
ee6b03e
9501f7a
ddb9132
b5a2c3b
2e7dccf
6e21bb8
e5eb01a
763ce78
02aafda
f98fe9d
bf6743f
85fb0fd
a9c5059
14462be
d5272c4
360358e
9943956
01582cd
f529158
8ad5817
8d6e1a9
de707f3
bd7dd2d
481179f
ca77f6b
1a5b922
f89333d
cbacecc
bfbae40
d4e137c
3d184a6
2abbd6c
2436326
c9868d3
5bdacef
2d922ec
a50c531
b57ea10
be8bae5
f606ad1
1aedd28
202e51d
f828a9c
1d7b9f0
4b49458
c865d1b
07afd43
04d3ab3
b2a7383
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -522,4 +522,13 @@ private: | |
| } | ||
| }; | ||
|
|
||
| template <typename T> | ||
| auto& getStore() { | ||
| if constexpr (std::is_same<T, Field3DParallel>::value) { | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: no header providing "std::is_same" is directly included [misc-include-cleaner] include/bout/deriv_store.hxx:35: - #include <unordered_map>
+ #include <type_traits>
+ #include <unordered_map> |
||
| return DerivativeStore<Field3D>::getInstance(); | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: no header providing "Field3D" is directly included [misc-include-cleaner] return DerivativeStore<Field3D>::getInstance();
^ |
||
| } else { | ||
| return DerivativeStore<T>::getInstance(); | ||
| } | ||
| } | ||
|
|
||
| #endif | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: no header providing "Field3DParallel" is directly included [misc-include-cleaner]
include/bout/deriv_store.hxx:37: