summaryrefslogtreecommitdiff
path: root/c++
diff options
context:
space:
mode:
Diffstat (limited to 'c++')
-rw-r--r--c++/lattice.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/c++/lattice.h b/c++/lattice.h
deleted file mode 100644
index 86c643c..0000000
--- a/c++/lattice.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#pragma once
-
-#include <forstio/codec/schema.h>
-
-namespace kel {
-namespace lbm {
-namespace schema {
-using namespace saw::schema;
-
-template<typename T, uint16_t D, uint16_t Q>
-using Lattice = Array<FixedArray<T,Q>,D>;
-
-template<typename T, uint16_t Q>
-using Lattice2D = Lattice<T,2,Q>;
-
-template<typename T, uint16_t Q>
-using Lattice3D = Lattice<T,3,Q>;
-}
-}
-}