blob: 6d269b0ae65047f9624d849b87ae0bb61cc9e279 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef SRC_MICS_H_
#define SRC_MICS_H_
#include "board/board.hpp"
#include <cstdint>
#include <string_view>
std::string_view engine_info();
uint64_t MoveGenTest(int depth, Game *g);
#endif /* SRC_MICS_H_ */
|