X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fthread.h;h=4ad08465ff30751ae3f89777ac57ff068d2485d5;hp=ac6040f285cb8705bac9881a6c0988840497db07;hb=1f40cd6d02374277abb5620d88d6fe58d7e9d6f7;hpb=0d68b523a390e2f5c37f211316869d798e852289 diff --git a/src/thread.h b/src/thread.h index ac6040f2..4ad08465 100644 --- a/src/thread.h +++ b/src/thread.h @@ -17,7 +17,7 @@ along with this program. If not, see . */ -#if !defined(THREAD_H_INCLUDED) +#ifndef THREAD_H_INCLUDED #define THREAD_H_INCLUDED #include @@ -68,6 +68,7 @@ struct SplitPoint { Value beta; int nodeType; Move threatMove; + bool cutNode; // Const pointers to shared data MovePicker* movePicker; @@ -103,7 +104,7 @@ struct Thread { template void split(Position& pos, Search::Stack* ss, Value alpha, Value beta, Value* bestValue, Move* bestMove, - Depth depth, Move threatMove, int moveCount, MovePicker* movePicker, int nodeType); + Depth depth, Move threatMove, int moveCount, MovePicker* movePicker, int nodeType, bool cutNode); SplitPoint splitPoints[MAX_SPLITPOINTS_PER_THREAD]; Material::Table materialTable; @@ -151,8 +152,8 @@ struct ThreadPool : public std::vector { void read_uci_options(); Thread* available_slave(Thread* master) const; void wait_for_think_finished(); - void start_thinking(const Position&, const Search::LimitsType&, const std::vector&, - Search::StateStackPtr&, Search::MovesVectPtr&); + void start_thinking(const Position&, const Search::LimitsType&, + const std::vector&, Search::StateStackPtr&); bool sleepWhileIdle; Depth minimumSplitDepth; @@ -164,4 +165,4 @@ struct ThreadPool : public std::vector { extern ThreadPool Threads; -#endif // !defined(THREAD_H_INCLUDED) +#endif // #ifndef THREAD_H_INCLUDED