X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fthread.h;h=302895095f856927e9061f42eab8e7aab4c98c48;hb=b0858877aeb0fc077526b04ef11a811b5b5b9e12;hp=d12ec845c01f4bc4a288bd6bfe076b8652ca9b5b;hpb=0ff91e16da5d66d7b47274203d460ff0144f1e39;p=stockfish diff --git a/src/thread.h b/src/thread.h index d12ec845..30289509 100644 --- a/src/thread.h +++ b/src/thread.h @@ -51,7 +51,8 @@ struct SplitPoint { SearchStack *parentSstack; int ply; Depth depth; - volatile Value alpha, beta, bestValue, futilityValue; + volatile Value alpha, beta, bestValue; + Value futilityValue; bool pvNode; int master, slaves[THREAD_MAX]; Lock lock; @@ -64,10 +65,9 @@ struct SplitPoint { struct Thread { SplitPoint *splitPoint; - int activeSplitPoints; + volatile int activeSplitPoints; uint64_t nodes; uint64_t betaCutOffs[2]; - bool failHighPly1; volatile bool stop; volatile bool running; volatile bool idle;