summaryrefslogtreecommitdiff
path: root/lib/core
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2026-01-19 17:10:19 +0100
committerClaudius "keldu" Holeksa <mail@keldu.de>2026-01-19 17:10:19 +0100
commitda7878360b0b4c58af922b491f5d775a867b191a (patch)
treec71474f620ac1b81a4c42cf8590e81b556cff99f /lib/core
parent8b3ade73997e9f87f1232b9dc9af35969e6f50dd (diff)
downloadlibs-lbm-da7878360b0b4c58af922b491f5d775a867b191a.tar.gz
Moving the ghost layers
Diffstat (limited to 'lib/core')
-rw-r--r--lib/core/c++/chunk.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/core/c++/chunk.hpp b/lib/core/c++/chunk.hpp
index bfef358..38b567b 100644
--- a/lib/core/c++/chunk.hpp
+++ b/lib/core/c++/chunk.hpp
@@ -32,7 +32,10 @@ using SuperChunk = Array<ChunkSchema,Dim>;
namespace saw {
template<typename Sch, uint64_t Dim, uint64_t Side, uint64_t Ghost, typename Encode>
class data<kel::lbm::sch::Chunk<Sch,Dim,Side,Ghost>,Encode> final {
+public:
+ using Schema = kel::lbm::sch::Chunk<Sch,Dim,Side,Ghost>;
private:
+ data<Schema::InnerSchema, Encode>
public:
};
}