-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable.cpp
57 lines (47 loc) · 959 Bytes
/
table.cpp
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
49
50
51
52
53
54
55
56
57
#include <vector>
#include "table.h"
using namespace std;
vector<pair<unsigned long long,lookupResult> > table(TABLE_SIZE);
void putTable(board b, int depth, int eval, move bestmove, int alpha, int beta)
{
lookupResult res;
res.evaluation = eval;
res.depth = depth;
if (res.evaluation >= beta)
res.type = SCORE_LOWERBOUND;
else if (res.evaluation <= alpha)
res.type = SCORE_UPPERBOUND;
else
{
res.type = SCORE_EXACT;
}
unsigned long long index = b.hash()%TABLE_SIZE;
table[index] = make_pair(b.hash(), res);
}
unsigned long long hits = 0;
unsigned long long total = 0;
bool queryTable(board b, lookupResult &res)
{
int index = b.hash()%TABLE_SIZE;
total++;
if (table[index].first == b.hash())
{
res = table[index].second;
hits++;
return true;
}
return false;
}
void resetTableHits()
{
hits = 0;
total = 0;
}
unsigned long long queryTableHits()
{
return hits;
}
unsigned long long queryTableTotal()
{
return total;
}