blob: a076dcb88a5593a7f50b88492f67f19397ee145c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#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(uint32_t depth, Game *g);
uint64_t MoveGenTestDivide(uint32_t depth, Game *g);
#endif /* SRC_MICS_H_ */
|