diff --git a/src/ai/search.cpp b/src/ai/search.cpp index d40bf76d..4e6e1128 100644 --- a/src/ai/search.cpp +++ b/src/ai/search.cpp @@ -40,7 +40,7 @@ vector openingBook; #endif // BOOK_LEARNING // 用于检测重复局面 (Position) -vector positions; +vector history; MillGameAi_ab::MillGameAi_ab() { @@ -271,7 +271,7 @@ void MillGameAi_ab::setPosition(const Game &game) //openingBook.clear(); #endif // BOOK_LEARNING - positions.clear(); + history.clear(); } this->position_ = game; @@ -328,19 +328,19 @@ int MillGameAi_ab::alphaBetaPruning(depth_t depth) if (position_.getPhase() == PHASE_MOVING) { hash_t hash = position_.getHash(); - if (std::find(positions.begin(), positions.end(), hash) != positions.end()) { + if (std::find(history.begin(), history.end(), hash) != history.end()) { nRepetition++; if (nRepetition == 3) { nRepetition = 0; return 3; } } else { - positions.push_back(hash); + history.push_back(hash); } } if (position_.getPhase() == PHASE_PLACING) { - positions.clear(); + history.clear(); } #endif // THREEFOLD_REPETITION diff --git a/src/ai/search.h b/src/ai/search.h index 20422d37..36be057f 100644 --- a/src/ai/search.h +++ b/src/ai/search.h @@ -231,7 +231,7 @@ private: #include "tt.h" #ifdef THREEFOLD_REPETITION -extern vector positions; +extern vector history; #endif #endif