X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fthread.h;h=302895095f856927e9061f42eab8e7aab4c98c48;hp=d12ec845c01f4bc4a288bd6bfe076b8652ca9b5b;hb=2e70a2873f42e327546248172baa77a76ae0b0fc;hpb=0ff91e16da5d66d7b47274203d460ff0144f1e39 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;