diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-08-05 18:55:34 +0200 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-08-05 18:55:34 +0200 |
commit | 7a330f62088f391a6bee12bd703ff10bc11daea2 (patch) | |
tree | 9c71ab491ac993138b89f746d1324078afa53dd1 /c++ | |
parent | 51a044e3160df05ad56102d3b8b1e0087c60d111 (diff) |
Fixing boundary issues
Diffstat (limited to 'c++')
-rw-r--r-- | c++/boundary.hpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/c++/boundary.hpp b/c++/boundary.hpp index 4c17e3b..3cf6f3f 100644 --- a/c++/boundary.hpp +++ b/c++/boundary.hpp @@ -7,6 +7,12 @@ namespace kel { namespace lbm { namespace cmpt { struct BounceBack {}; + +template<bool East> +struct ZouHeHorizontal{}; + +template<bool North> +struct ZouHeVertical{}; } /** @@ -57,5 +63,11 @@ public: } } }; + +template<typename T, typename Descriptor, bool Dir> +class component<T, Descriptor, cmpt::ZouHeHorizontal<Dir>> final { +private: +public: +}; } } |