summaryrefslogtreecommitdiff
path: root/c++/lattice.h
blob: eb3b4cc6ff1b538543e8b0c510c5c2eee1ec386b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once

#include <forstio/codec/schema.h>

namespace kel {
namespace lbm {
namespace schema {
using namespace saw::schema;

template<typename T, size_t D>
using Lattice = Array<T,D>;

template<typename T>
using Lattice2D = Lattice<T,2>;

template<typename T>
using Lattice3D = Lattice<T,3>;
}
}
}