diff options
| author | tslil clingman <tslil@posteo.de> | 2021-01-21 01:31:22 -0500 |
|---|---|---|
| committer | tslil <tslil@posteo.de> | 2026-08-28 19:37:41 +0100 |
| commit | e1c9a014420648b2799509016b4fc52dec19bc2d (patch) | |
| tree | dc7ef6bc9902245506053b96c2348e0fff9cb836 /include/negamax_cnn1986.h | |
| parent | 19359dde885243e2359f7c560ae801efccee7294 (diff) | |
Renaming
Diffstat (limited to 'include/negamax_cnn1986.h')
| -rw-r--r-- | include/negamax_cnn1986.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/include/negamax_cnn1986.h b/include/negamax_cnn1986.h index 411d877..799ca4c 100644 --- a/include/negamax_cnn1986.h +++ b/include/negamax_cnn1986.h @@ -3,16 +3,15 @@ #include "weights.h" extern const float infty; -extern char ct1986_ptn[9]; -extern uint8_t ct1986_search_depth; -extern inline void ct1986_display_progress(const uint8_t); +extern char negamax_cnn1986_ptn[9]; +extern uint8_t negamax_cnn1986_search_depth; +extern inline void negamax_cnn1986_display_progress(const uint8_t); // Do negamax to depth ct1986_search_depth and return PTN of best move // in ct1986_ptn, along with its value as the return. The // ct1986_display_progress function is called on every new square at // the top level. -float ct1986_generate(void); +float negamax_cnn1986_generate(void); // Internal utility function -float -ct1986_evaluate_black_win(void); +float cnn1986_evaluate_black_win(void); |
