-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdef.h
executable file
·29 lines (25 loc) · 847 Bytes
/
def.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
#include <cmath>
#include <cstring>
#include <sstream>
#include <queue>
#include <fstream>
#include <chrono>
#include "omp.h"
#include "getopt.h"
#ifdef ED
#include "./tree/AVtreeString.h"
#else
#include "./tree/AVtree.h"
#endif
#include <sys/stat.h>
#include <iostream>
#include <functional>
#include <iomanip>
using namespace std;
using namespace std::chrono;
#define LINEAR_SCAN 0
#define STANDARD 1
#define STANDARD_MEDIOCRE 2
#define MEDIOCRE_CACHE 3
#define KNNMediocre 4
#define KNNCrackOnKth 5