blob: d2173739737e0f6f88d3b8d26c665b6bc6a901b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#pragma once
#include "component.hpp"
namespace kel {
namespace lbm {
namespace cmpt {
struct Stream {};
}
template<typename T, typename Descriptor, typename Encode>
class component<T,Descriptor, cmpt::Stream, Encode> final {
private:
public:
static constexpr saw::string_literal name = "streaming";
static constexpr saw::string_literal after = "collide";
static constexpr saw::string_literal before = "";
template<typename CellFieldSchema>
void apply(const saw::data<CellFieldSchema, Encode>& field, const saw::data<sch::FixedArray<sch::UInt64,Descriptor::D>>& index, saw::data<sch::UInt64> time_step) const {
}
};
}
}
|