|
int | search_eval_0 (Search *search) |
| evaluate a midgame position with the evaluation function. More...
|
|
int | search_eval_1 (Search *search, const int alpha, int beta) |
| Evaluate a position at depth 1. More...
|
|
int | search_eval_2 (Search *search, int alpha, const int beta) |
| Evaluate a position at depth 2. More...
|
|
static void | search_update_probcut (Search *search, const NodeType node_type) |
|
static void | search_restore_probcut (Search *search, const NodeType node_type, const int selectivity) |
|
static bool | search_probcut (Search *search, const int alpha, const int depth, Node *parent, int *value) |
| Probcut. More...
|
|
int | NWS_shallow (Search *search, const int alpha, int depth, HashTable *hash_table) |
| Evaluate a midgame position with a Null Window Search algorithm. More...
|
|
int | PVS_shallow (Search *search, int alpha, int beta, int depth) |
| Evaluate a midgame position at shallow depth. More...
|
|
int | NWS_midgame (Search *search, const int alpha, int depth, Node *parent) |
| Evaluate a midgame position with a Null Window Search algorithm. More...
|
|
int | PVS_midgame (Search *search, const int alpha, const int beta, int depth, Node *parent) |
| Evaluate a position with a deep Principal Variation Search algorithm. More...
|
|
Search near the end of the game.
- Date
- 1998 - 2017
- Author
- Richard Delorme
- Version
- 4.4
int NWS_midgame |
( |
Search * |
search, |
|
|
const int |
alpha, |
|
|
int |
depth, |
|
|
Node * |
parent |
|
) |
| |
Evaluate a midgame position with a Null Window Search algorithm.
This function is used when there are still many empty squares on the board. Move ordering, hash table cutoff, enhanced transposition cutoff, etc. are used in order to diminish the size of the tree to analyse, but at the expense of a slower speed.
- Parameters
-
search | Search. |
alpha | Alpha bound. |
depth | Depth. |
parent | Parent node. |
- Returns
- A score, as a disc difference.
int PVS_midgame |
( |
Search * |
search, |
|
|
const int |
alpha, |
|
|
const int |
beta, |
|
|
int |
depth, |
|
|
Node * |
parent |
|
) |
| |
Evaluate a position with a deep Principal Variation Search algorithm.
This function is used when there are still many empty squares on the board. Move ordering, hash table cutoff, enhanced transposition cutoff, etc. are used in order to diminish the size of the tree to analyse, but at the expense of a slower speed.
- Parameters
-
search | Search. |
alpha | Lower bound. |
beta | Upper bound. |
depth | Depth. |
parent | Parent node. |
- Returns
- A score, as a disc difference.