diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2023-07-03 14:25:21 +0200 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2023-07-03 14:25:21 +0200 |
commit | 45ad75c8fa0e96009d5bc84b054aaac998b6a31b (patch) | |
tree | e304e260327db6b371af730092aacdb591e72cbd | |
parent | a97669c0e67b4068d8491a8993a12aacb717768e (diff) |
c++: Deleting old schema file
-rw-r--r-- | c++/lattice.h | 20 |
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>; -} -} -} |