This commit is contained in:
2022-12-23 23:57:29 +01:00
parent 87adca7e66
commit cb0fcc4702
14 changed files with 208 additions and 52 deletions

View File

@@ -1,3 +1,4 @@
#include <iostream>
#include "BasicEngine.hpp"
#include "Search.hpp"
@@ -16,5 +17,6 @@ void BasicEngine::newGame() {
PrincipalVariation BasicEngine::pv(const Board &board, const TimeInfo::Optional &timeInfo) {
(void)board;
(void)timeInfo;
return Search::start(board);
auto pv =Search::start(board);
return pv;
}