X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fthread.h;h=4ad08465ff30751ae3f89777ac57ff068d2485d5;hp=fbd3b7f4af2e58509ae1530ab6ad6efe8bbbbb76;hb=1f40cd6d02374277abb5620d88d6fe58d7e9d6f7;hpb=c5ec94d0f1b128fc2c691c7231663a345409d5cc diff --git a/src/thread.h b/src/thread.h index fbd3b7f4..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; @@ -164,4 +165,4 @@ struct ThreadPool : public std::vector { extern ThreadPool Threads; -#endif // !defined(THREAD_H_INCLUDED) +#endif // #ifndef THREAD_H_INCLUDED