My Project
|
#include "bit.h"
#include "hash.h"
#include "options.h"
#include "stats.h"
#include "search.h"
#include "util.h"
#include "settings.h"
#include <stdlib.h>
#include <stdio.h>
#include <assert.h>
Functions | |
void | hash_code_init (void) |
Initialize global hash code data. More... | |
void | hash_move_init (void) |
Initialize global hash move data. More... | |
void | hash_init (HashTable *hash_table, const int size) |
Initialise the hashtable. More... | |
void | hash_cleanup (HashTable *hash_table) |
Clear the hashtable. More... | |
void | hash_clear (HashTable *hash_table) |
Clear the hashtable. More... | |
void | hash_free (HashTable *hash_table) |
Free the hashtable. More... | |
unsigned int | writeable_level (HashData *data) |
make a level from date, cost, depth & selectivity. More... | |
static void | data_update (HashData *data, const int cost, const int alpha, const int beta, const int score, const int move) |
update an hash table item. More... | |
static void | data_upgrade (HashData *data, const int depth, const int selectivity, const int cost, const int alpha, const int beta, const int score, const int move) |
Upgrade an hash table data item. More... | |
static void | data_new (HashData *data, const int date, const int depth, const int selectivity, const int cost, const int alpha, const int beta, const int score, const int move) |
Set an hash table data item. More... | |
static void | hash_new (Hash *hash, HashLock *lock, const unsigned long long hash_code, const int date, const int depth, const int selectivity, const int cost, const int alpha, const int beta, const int score, const int move) |
Initialize a new hash table item. More... | |
void | hash_set (Hash *hash, HashLock *lock, const unsigned long long hash_code, const int date, const int depth, const int selectivity, const int cost, const int lower, const int upper, const int move) |
Set a new hash table item. More... | |
static bool | hash_update (Hash *hash, HashLock *lock, const unsigned long long hash_code, const int date, const int depth, const int selectivity, const int cost, const int alpha, const int beta, const int score, const int move) |
update the hash entry More... | |
static bool | hash_replace (Hash *hash, HashLock *lock, const unsigned long long hash_code, const int date, const int depth, const int selectivity, const int cost, const int alpha, const int beta, const int score, const int move) |
replace the hash entry. More... | |
static bool | hash_reset (Hash *hash, HashLock *lock, const unsigned long long hash_code, const int date, const int depth, const int selectivity, const int lower, const int upper, const int move) |
Reset an hash entry from new data values. More... | |
void | hash_feed (HashTable *hash_table, const unsigned long long hash_code, const int depth, const int selectivity, const int lower, const int upper, const int move) |
feed hash table (from Cassio). More... | |
void | hash_store (HashTable *hash_table, const unsigned long long hash_code, const int depth, const int selectivity, const int cost, const int alpha, const int beta, const int score, const int move) |
Store an hashtable item. More... | |
void | hash_force (HashTable *hash_table, const unsigned long long hash_code, const int depth, const int selectivity, const int cost, const int alpha, const int beta, const int score, const int move) |
Store an hashtable item. More... | |
bool | hash_get (HashTable *hash_table, const unsigned long long hash_code, HashData *data) |
Find an hash table entry according to the evaluated board hash codes. More... | |
void | hash_exclude_move (HashTable *hash_table, const unsigned long long hash_code, const int move) |
Erase an hash table entry. More... | |
void | hash_copy (const HashTable *src, HashTable *dest) |
Copy an hastable to another one. More... | |
void | hash_print (const HashData *data, FILE *f) |
print HashData content. More... | |
Variables | |
unsigned long long | hash_rank [16][256] |
unsigned long long | hash_move [64][60] |
const HashData | HASH_DATA_INIT = {0, 0, 0, 0, -SCORE_INF, SCORE_INF, {NOMOVE, NOMOVE}} |
|
static |
|
static |
|
static |
Upgrade an hash table data item.
Upgrade is done when the search level increases. Best moves are updated, others data are reset to new value.
void hash_cleanup | ( | HashTable * | hash_table | ) |
void hash_clear | ( | HashTable * | hash_table | ) |
void hash_code_init | ( | void | ) |
Initialize global hash code data.
Copy an hastable to another one.
src | Source hash table to copy. |
dest | Destination hash table. |
void hash_exclude_move | ( | HashTable * | hash_table, |
const unsigned long long | hash_code, | ||
const int | move | ||
) |
void hash_feed | ( | HashTable * | hash_table, |
const unsigned long long | hash_code, | ||
const int | depth, | ||
const int | selectivity, | ||
const int | lower, | ||
const int | upper, | ||
const int | move | ||
) |
feed hash table (from Cassio).
hash_table | Hash Table. |
hash_code | Hash code. |
depth | Search depth. |
selectivity | Selectivity level. |
lower | Alpha bound. |
upper | Beta bound. |
move | best move. |
void hash_force | ( | HashTable * | hash_table, |
const unsigned long long | hash_code, | ||
const int | depth, | ||
const int | selectivity, | ||
const int | cost, | ||
const int | alpha, | ||
const int | beta, | ||
const int | score, | ||
const int | move | ||
) |
Store an hashtable item.
Does the same as hash_store() except it always store the current search state
hash_table | Hash table to update. |
hash_code | Hash code of an othello board. |
alpha | Alpha bound when calling the alphabeta function. |
depth | Search depth. |
selectivity | Search selectivity. |
cost | Search cost (i.e. log2(node count)). |
beta | Beta bound when calling the alphabeta function. |
score | Best score found. |
move | Best move found. |
void hash_free | ( | HashTable * | hash_table | ) |
Free the hashtable.
Free the memory allocated by the hash table entries
hash_table | hash_table to free. |
void hash_init | ( | HashTable * | hash_table, |
const int | size | ||
) |
Initialise the hashtable.
Allocate the hash table entries and initialise the hash masks.
hash_table | Hash table to setup. |
size | Requested size for the hash table in number of bits. |
void hash_move_init | ( | void | ) |
Initialize global hash move data.
|
static |
Initialize a new hash table item.
This implementation tries to be robust against concurrency. Data are first set up in a local thread-safe structure, before being copied into the hashtable entry. Then the hashcode of the entry is xored with the thread safe structure ; so that any corrupted entry won't be readable.
void hash_print | ( | const HashData * | data, |
FILE * | f | ||
) |
|
static |
replace the hash entry.
This implementation tries to be robust against concurrency. Data are first set up in a local thread-safe structure, before being copied into the hashtable entry. Then the hashcode of the entry is xored with the thread safe structure ; so that any corrupted entry won't be readable.
hash | Hash Entry. |
lock | Lock. |
hash_code | Hash code. |
date | Hash date. |
depth | Search depth. |
selectivity | Search selectivity. |
cost | Hash Cost (log2(node count)). |
alpha | Alpha bound. |
beta | Beta bound. |
score | Best score. |
move | Best move. |
void hash_set | ( | Hash * | hash, |
HashLock * | lock, | ||
const unsigned long long | hash_code, | ||
const int | date, | ||
const int | depth, | ||
const int | selectivity, | ||
const int | cost, | ||
const int | lower, | ||
const int | upper, | ||
const int | move | ||
) |
Set a new hash table item.
This implementation tries to be robust against concurrency. Data are first set up in a local thread-safe structure, before being copied into the hashtable entry. Then the hashcode of the entry is xored with the thread safe structure ; so that any corrupted entry won't be readable.
void hash_store | ( | HashTable * | hash_table, |
const unsigned long long | hash_code, | ||
const int | depth, | ||
const int | selectivity, | ||
const int | cost, | ||
const int | alpha, | ||
const int | beta, | ||
const int | score, | ||
const int | move | ||
) |
Store an hashtable item.
Find an hash table entry according to the evaluated board hash codes. Then update the entry if it already exists otherwise create a new one. Collisions are managed in such a way that better existing entries are always preserved and the new evaluated data is always added. Lower and upper score bounds are then updated/set from the alpha, beta and score values according to the following alphabeta property (where alpha < beta): -if (score >= beta) score is a lower bound of the real score -if (score <= alpha) score is an upper bound of the real score -if (alpha < score && score < beta) score equals the real score So: -if (score < beta) update the upper bound of the hash entry -if (score > alpha) update the lower bound of the hash entry The best move is also stored, but only if score >= alpha. In case the entry already exists with better data, nothing is stored.
hash_table | Hash table to update. |
hash_code | Hash code of an othello board. |
alpha | Alpha bound when calling the alphabeta function. |
depth | Search depth. |
selectivity | Search selectivity. |
cost | Search cost (i.e. log2(node count)). |
beta | Beta bound when calling the alphabeta function. |
score | Best score found. |
move | Best move found. |
|
static |
update the hash entry
This implementation tries to be robust against concurrency. Data are first set up in a local thread-safe structure, before being copied into the hashtable entry. Then the hashcode of the entry is xored with the thread safe structure ; so that any corrupted entry won't be readable.
hash | Hash Entry. |
lock | Lock. |
hash_code | Hash code. |
date | Hash date. |
depth | Search depth. |
selectivity | Search selectivity. |
cost | Hash Cost (log2(node count)). |
alpha | Alpha bound. |
beta | Beta bound. |
score | Best score. |
move | Best move. |
|
inline |
HashData init value
unsigned long long hash_move[64][60] |
hashing global data
unsigned long long hash_rank[16][256] |
hashing global data