-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tables.h
48 lines (37 loc) · 896 Bytes
/
Tables.h
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//
// Created by igort on 18/05/2023.
//
#ifndef MONI_K_TABLES_H
#define MONI_K_TABLES_H
#include <string>
class MONI_Table {
public:
unsigned int* head;
unsigned int* SA_head;
unsigned int* tail;
unsigned int* SA_tail;
unsigned int* mu;
unsigned int* finger;
char* BWT_head;
unsigned char* offset_tail;
unsigned int* L_tail;
unsigned char* offset_head;
unsigned int* L_head;
MONI_Table(const std::string&, int, bool);
};
class Phi_Table {
public:
unsigned int* SA_head;
unsigned int* SA_tail;
unsigned int* LCP_head;
unsigned int* finger;
Phi_Table(const std::string&, int);
};
class Inverse_Phi_Table {
public:
unsigned int* SA_head;
unsigned int* SA_tail;
unsigned int* finger;
Inverse_Phi_Table(const std::string&, int);
};
#endif //MONI_K_TABLES_H