Add negamax function (no α β pruning)

This commit is contained in:
2023-07-09 15:44:50 +02:00
parent 4bca805404
commit 0b787c8a90
3 changed files with 50 additions and 14 deletions

View File

@@ -20,6 +20,6 @@
#define EVAL_MIN INT_MIN
#define EVAL_MAX INT_MAX
eval_t negamax(pos_t *pos, int depth);
eval_t negamax(pos_t *pos, int depth, int color);
#endif /* SEARCH_H */