X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fthread.h;h=c9152b229243620bb00b451f85f91e4c7e9b85e6;hb=012f20d66ec08db7c4c908b2ae7ca44553616d25;hp=8169407e09b0766e7d4edb4d556727a6b5b2ea17;hpb=f5727deee3823accf791984836f45db78e3a53e5;p=stockfish diff --git a/src/thread.h b/src/thread.h index 8169407e..c9152b22 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-2013 Marco Costalba, Joona Kiiski, Tord Romstad + Copyright (C) 2008-2014 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 @@ -76,7 +76,7 @@ struct SplitPoint { // Shared data Mutex mutex; volatile uint64_t slavesMask; - volatile int64_t nodes; + volatile uint64_t nodes; volatile Value alpha; volatile Value bestValue; volatile Move bestMove; @@ -162,8 +162,7 @@ struct ThreadPool : public std::vector { void read_uci_options(); Thread* available_slave(const Thread* master) const; void wait_for_think_finished(); - void start_thinking(const Position&, const Search::LimitsType&, - const std::vector&, Search::StateStackPtr&); + void start_thinking(const Position&, const Search::LimitsType&, Search::StateStackPtr&); bool sleepWhileIdle; Depth minimumSplitDepth;