diff options
| author | Adam <adammegarules1@gmail.com> | 2026-07-31 15:14:12 +0200 |
|---|---|---|
| committer | Adam <adammegarules1@gmail.com> | 2026-07-31 15:14:12 +0200 |
| commit | 63f380a48ab21f39962b60837fa487e9f978be95 (patch) | |
| tree | dea75673c058220603c1b34c2b5a0b598f973bad /src/misc.hpp | |
| parent | f47ac9172ce75ab5f359cfebb2c44d6784e956a4 (diff) | |
adding perft
Diffstat (limited to 'src/misc.hpp')
| -rw-r--r-- | src/misc.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/misc.hpp b/src/misc.hpp index 6bf8e02..c84edef 100644 --- a/src/misc.hpp +++ b/src/misc.hpp @@ -1,9 +1,13 @@ #ifndef SRC_MICS_H_ #define SRC_MICS_H_ +#include "board/board.hpp" +#include <cstdint> #include <string> std::string engine_info(); std::string engine_version(); +uint64_t MoveGenTest(int depth, Game *g); + #endif /* SRC_MICS_H_ */ |
