Remove AIAlgorithm::do_move()

This commit is contained in:
Calcitem 2020-09-03 00:24:55 +08:00
parent 697c5aba59
commit f51e3862e8
2 changed files with 0 additions and 7 deletions

View File

@ -311,11 +311,6 @@ int AIAlgorithm::search()
} }
#endif // ALPHABETA_AI #endif // ALPHABETA_AI
void AIAlgorithm::do_move(Move move)
{
pos->do_move(move);
}
#ifdef ALPHABETA_AI #ifdef ALPHABETA_AI
const char* AIAlgorithm::nextMove() const char* AIAlgorithm::nextMove()
{ {

View File

@ -164,8 +164,6 @@ public:
const char *nextMove(); const char *nextMove();
#endif // ALPHABETA_AI #endif // ALPHABETA_AI
void do_move(Move move);
void undo_move(); void undo_move();
#ifdef TRANSPOSITION_TABLE_ENABLE #ifdef TRANSPOSITION_TABLE_ENABLE