blob: fe0fe7e9a0a4bd1e41895cec90db185c2a2bccde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
namespace kel {
namespace lbm {
template<typename Schema>
struct geometry {
void apply(const saw::data<Schema>& field, const saw::data<sch::FixedArray<sch::UInt64,2u>>& start, const saw::data<sch::FixedArray<sch::UInt64,2u>>& end, const saw::data<sch::UInt8>& type){
}
};
}
}
|