blob: a215cc166f1858576ceb16ea3456716ca1e3975f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
namespace kel {
namespace lbm {
template<typename T, typename Descriptor>
struct is_neighbour {
template<typename CellFieldSchema>
static bool operator()(saw::data<CellFieldSchema>& latt, saw::data<sch::FixedArray<sch::UInt64, Descriptor::D>& index, saw::data<sch::UInt64> range) {
using dfi = df_info<T,Descriptor>;
}
};
}
}
|