AllianceDB  0.0.1
AllianceDB is an open-source suite, including benchmarks and libs for evaluating and improving stream operation algorithms on modern hardwares.
CellJoin.h
1 //
2 // Created by Wang Chenyu on 13/10/21.
3 //
4 
5 
6 #ifndef HYBRID_JOIN_CELLJOIN_H
7 #define HYBRID_JOIN_CELLJOIN_H
8 
9 #include <Common/Types.h>
10 #include <TestBench/AbstractJoinMethod.h>
12 namespace INTELLI {
13 class CellJoin : public AbstractJoinMethod<AbstractEagerWS> {
14  public:
15  static void execute(Result &joinResult, RelationCouple &relationCouple);
16  //static void test(Result &joinResult, RelationCouple &relationCouple);
17  static void threadWork(int id, numberType windowSizeS);
18 };
19 }
20 
21 #endif //HYBRID_JOIN_CELLJOIN_H
Definition: AbstractJoinMethod.h:10
Definition: CellJoin.h:13
Definition: Types.h:164
Definition: Types.h:210
Definition: DatasetTool.h:10