add custom chess engine

This commit is contained in:
Josh-Heaps
2026-06-08 13:58:22 -06:00
parent d2ae34f530
commit c3280aa6d3
42 changed files with 3033 additions and 168 deletions
+14
View File
@@ -0,0 +1,14 @@
// Perft: counts the leaf nodes of the legal move tree to a given depth.
// The standard correctness test for move generation + make/unmake.
#ifndef CHESS_PERFT_H
#define CHESS_PERFT_H
#include "position.h"
namespace chess {
uint64_t perft(Position& pos, int depth);
} // namespace chess
#endif // CHESS_PERFT_H