X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fthread.h;h=c762f130ebb2e96ed06824ef87d3c0a652b5e110;hp=a73213747e98eec4f3d4054a7c4a6e2a222da5b0;hb=97e0b0a01e7cd9eb942b76637b6323d0788202ae;hpb=9cb187762a68e431559ee9e4b1ed8c6f16826d89 diff --git a/src/thread.h b/src/thread.h index a7321374..c762f130 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-2010 Marco Costalba, Joona Kiiski, Tord Romstad + Copyright (C) 2008-2012 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 @@ -20,7 +20,7 @@ #if !defined(THREAD_H_INCLUDED) #define THREAD_H_INCLUDED -#include +#include #include "lock.h" #include "material.h" @@ -120,7 +120,7 @@ public: void wait_for_stop_or_ponderhit(); void stop_thinking(); void start_thinking(const Position& pos, const Search::LimitsType& limits, - const std::vector& searchMoves, bool asyncMode); + const std::set& = std::set(), bool async = false); template Value split(Position& pos, Search::Stack* ss, Value alpha, Value beta, Value bestValue,