X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fthread.h;h=48da805b641cb5aca9e985238954c0873712dda2;hp=13615c2c92daca51714ff5456491926b2b95fa8c;hb=78e6b361c5a6763b81f29cb06f62f8e4af9aaddf;hpb=0f7cbaca75124d88136d356cf7b082207b572b3c diff --git a/src/thread.h b/src/thread.h index 13615c2c..48da805b 100644 --- a/src/thread.h +++ b/src/thread.h @@ -1,7 +1,7 @@ /* Stockfish, a UCI chess playing engine derived from Glaurung 2.1 Copyright (C) 2004-2008 Tord Romstad (Glaurung author) - Copyright (C) 2008-2010 Marco Costalba, Joona Kiiski, Tord Romstad + Copyright (C) 2008-2012 Marco Costalba, Joona Kiiski, Tord Romstad Stockfish is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -46,7 +46,7 @@ struct SplitPoint { // Const pointers to shared data MovePicker* mp; - SearchStack* ss; + Search::Stack* ss; // Shared data Lock lock; @@ -118,11 +118,12 @@ public: bool split_point_finished(SplitPoint* sp) const; void set_timer(int msec); void wait_for_stop_or_ponderhit(); + void stop_thinking(); void start_thinking(const Position& pos, const Search::LimitsType& limits, 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;