blob: d582b2caba3076c1321746bcf215c8692220bb12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#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){
}
};
*/
// Ghost - 0
// Wall - 1
// Fluid - 2
// Other Stuff - 3-x
}
}
|