X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fthread.h;h=dcaa5ca3c29c66f662e55cbd1c16d778eea0bd23;hp=13615c2c92daca51714ff5456491926b2b95fa8c;hb=5b8ca1eee77b736c35b418b1cb11da9fc66f83e0;hpb=81cd417b4584b0e3830940c5cb122c898afde08a diff --git a/src/thread.h b/src/thread.h index 13615c2c..dcaa5ca3 100644 --- a/src/thread.h +++ b/src/thread.h @@ -46,7 +46,7 @@ struct SplitPoint { // Const pointers to shared data MovePicker* mp; - SearchStack* ss; + Search::Stack* ss; // Shared data Lock lock; @@ -122,7 +122,7 @@ public: const std::vector& searchMoves, bool asyncMode); template - Value split(Position& pos, SearchStack* ss, Value alpha, Value beta, Value bestValue, + Value split(Position& pos, Search::Stack* ss, Value alpha, Value beta, Value bestValue, Depth depth, Move threatMove, int moveCount, MovePicker* mp, int nodeType); private: friend struct Thread;