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

#include <forstio/codec/schema.h>

namespace kel {
namespace lbm {
namespace 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>;
}
}
}
}