aboutsummaryrefslogtreecommitdiff
path: root/include/negamax.h
diff options
context:
space:
mode:
authortslil clingman <tslil@posteo.de>2021-02-01 21:46:24 -0500
committertslil <tslil@posteo.de>2026-08-28 19:37:41 +0100
commit11956b2e940f5e1839efab187d898092e819a766 (patch)
treed485a6944d3fedbd62690a96bdcb19e0918104af /include/negamax.h
parent328c8d1e3094a942d6a2edd933c9cc4ab09daab1 (diff)
Tried some naive iterative deepening. Work on TEI interface next
If TEI is implemented, then i could make use of Morten's racetrack (https://github.com/MortenLohne/racetrack) and develop a quantitative measure of the bot's performance. This is the current priority.
Diffstat (limited to 'include/negamax.h')
-rw-r--r--include/negamax.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/negamax.h b/include/negamax.h
index 77461b8..b3dec75 100644
--- a/include/negamax.h
+++ b/include/negamax.h
@@ -33,6 +33,7 @@ extern char negamax_ptn[9];
extern uint8_t negamax_search_depth;
extern void negamax_display_progress(const uint8_t cur_depth,
+ const uint8_t init_depth,
const uint32_t length);
// ===================================================================