X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fthread.h;h=56d000f3f94438275a83c88eb06ad7c2582fd921;hp=645482673ba1b93fbc1dfe9449b329aee0abf049;hb=c65d67feb53895a34423cc2043edc69741f2ba92;hpb=bc6faf633e7f4d2c998f434a41ecfc9b80047607;ds=sidebyside diff --git a/src/thread.h b/src/thread.h index 64548267..56d000f3 100644 --- a/src/thread.h +++ b/src/thread.h @@ -115,8 +115,6 @@ struct Thread : public ThreadBase { virtual void idle_loop(); bool cutoff_occurred() const; bool is_available_to(const Thread* master) const; - ExtMove* get_moves_array() { return &movePages[curPage += MAX_MOVES]; } - void free_moves_array() { curPage -= MAX_MOVES; } template void split(Position& pos, const Search::Stack* ss, Value alpha, Value beta, Value* bestValue, Move* bestMove, @@ -127,8 +125,6 @@ struct Thread : public ThreadBase { Endgames endgames; Pawns::Table pawnsTable; Position* activePosition; - std::vector movePages; - int curPage; size_t idx; int maxPly; SplitPoint* volatile activeSplitPoint;