X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.h;h=8290b41a70f6a49f874df4c64c28341e5614d45f;hp=c1b370d63070018c0d64feb99a6d48714945d306;hb=f80c50bcddfd02c1b93dcde067d6a7362dda53a2;hpb=d282cf6964d493706b6face7109e1859eab1742f;ds=sidebyside diff --git a/src/search.h b/src/search.h index c1b370d6..8290b41a 100644 --- a/src/search.h +++ b/src/search.h @@ -55,7 +55,7 @@ struct Stack { struct LimitsType { LimitsType() { memset(this, 0, sizeof(LimitsType)); } - bool useTimeManagement() const { return !(maxTime | maxDepth | maxNodes | infinite); } + bool use_time_management() const { return !(maxTime | maxDepth | maxNodes | infinite); } int time, increment, movesToGo, maxTime, maxDepth, maxNodes, infinite, ponder; };