mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 00:33:09 +00:00
Rename MaxSearchTime and AbsoluteMaxSearchTime
Renamed in OptimumSearchTime and MaximumSearchTime, should be more clear now. Suggested by Joona. No functional change. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
parent
cf0295f1ad
commit
fe23c70cf1
3 changed files with 26 additions and 26 deletions
|
@ -251,8 +251,8 @@ namespace {
|
||||||
int MultiPV;
|
int MultiPV;
|
||||||
|
|
||||||
// Time managment variables
|
// Time managment variables
|
||||||
int SearchStartTime, MaxNodes, MaxDepth, MaxSearchTime;
|
int SearchStartTime, MaxNodes, MaxDepth, OptimumSearchTime;
|
||||||
int AbsoluteMaxSearchTime, ExtraSearchTime, ExactMaxTime;
|
int MaximumSearchTime, ExtraSearchTime, ExactMaxTime;
|
||||||
bool UseTimeManagement, InfiniteSearch, PonderSearch, StopOnPonderhit;
|
bool UseTimeManagement, InfiniteSearch, PonderSearch, StopOnPonderhit;
|
||||||
bool FirstRootMove, AbortSearch, Quit, AspirationFailLow;
|
bool FirstRootMove, AbortSearch, Quit, AspirationFailLow;
|
||||||
|
|
||||||
|
@ -401,7 +401,7 @@ bool think(const Position& pos, bool infinite, bool ponder, int time[], int incr
|
||||||
|
|
||||||
// Initialize global search variables
|
// Initialize global search variables
|
||||||
StopOnPonderhit = AbortSearch = Quit = AspirationFailLow = false;
|
StopOnPonderhit = AbortSearch = Quit = AspirationFailLow = false;
|
||||||
MaxSearchTime = AbsoluteMaxSearchTime = ExtraSearchTime = 0;
|
OptimumSearchTime = MaximumSearchTime = ExtraSearchTime = 0;
|
||||||
NodesSincePoll = 0;
|
NodesSincePoll = 0;
|
||||||
TM.resetNodeCounters();
|
TM.resetNodeCounters();
|
||||||
SearchStartTime = get_system_time();
|
SearchStartTime = get_system_time();
|
||||||
|
@ -475,12 +475,12 @@ bool think(const Position& pos, bool infinite, bool ponder, int time[], int incr
|
||||||
if (UseTimeManagement)
|
if (UseTimeManagement)
|
||||||
{
|
{
|
||||||
get_search_times(myTime, myIncrement, movesToGo, pos.startpos_ply_counter(),
|
get_search_times(myTime, myIncrement, movesToGo, pos.startpos_ply_counter(),
|
||||||
&MaxSearchTime, &AbsoluteMaxSearchTime);
|
&OptimumSearchTime, &MaximumSearchTime);
|
||||||
|
|
||||||
if (get_option_value_bool("Ponder"))
|
if (get_option_value_bool("Ponder"))
|
||||||
{
|
{
|
||||||
MaxSearchTime += MaxSearchTime / 4;
|
OptimumSearchTime += OptimumSearchTime / 4;
|
||||||
MaxSearchTime = Min(MaxSearchTime, AbsoluteMaxSearchTime);
|
OptimumSearchTime = Min(OptimumSearchTime, MaximumSearchTime);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -626,20 +626,20 @@ namespace {
|
||||||
if ( Iteration >= 8
|
if ( Iteration >= 8
|
||||||
&& EasyMove == pv[0]
|
&& EasyMove == pv[0]
|
||||||
&& ( ( rml.get_move_cumulative_nodes(0) > (nodes * 85) / 100
|
&& ( ( rml.get_move_cumulative_nodes(0) > (nodes * 85) / 100
|
||||||
&& current_search_time() > MaxSearchTime / 16)
|
&& current_search_time() > OptimumSearchTime / 16)
|
||||||
||( rml.get_move_cumulative_nodes(0) > (nodes * 98) / 100
|
||( rml.get_move_cumulative_nodes(0) > (nodes * 98) / 100
|
||||||
&& current_search_time() > MaxSearchTime / 32)))
|
&& current_search_time() > OptimumSearchTime / 32)))
|
||||||
stopSearch = true;
|
stopSearch = true;
|
||||||
|
|
||||||
// Add some extra time if the best move has changed during the last two iterations
|
// Add some extra time if the best move has changed during the last two iterations
|
||||||
if (Iteration > 5 && Iteration <= 50)
|
if (Iteration > 5 && Iteration <= 50)
|
||||||
ExtraSearchTime = BestMoveChangesByIteration[Iteration] * (MaxSearchTime / 2)
|
ExtraSearchTime = BestMoveChangesByIteration[Iteration] * (OptimumSearchTime / 2)
|
||||||
+ BestMoveChangesByIteration[Iteration-1] * (MaxSearchTime / 3);
|
+ BestMoveChangesByIteration[Iteration-1] * (OptimumSearchTime / 3);
|
||||||
|
|
||||||
// Stop search if most of MaxSearchTime is consumed at the end of the
|
// Stop search if most of MaxSearchTime is consumed at the end of the
|
||||||
// iteration. We probably don't have enough time to search the first
|
// iteration. We probably don't have enough time to search the first
|
||||||
// move at the next iteration anyway.
|
// move at the next iteration anyway.
|
||||||
if (current_search_time() > ((MaxSearchTime + ExtraSearchTime) * 80) / 128)
|
if (current_search_time() > ((OptimumSearchTime + ExtraSearchTime) * 80) / 128)
|
||||||
stopSearch = true;
|
stopSearch = true;
|
||||||
|
|
||||||
if (stopSearch)
|
if (stopSearch)
|
||||||
|
@ -2142,9 +2142,9 @@ namespace {
|
||||||
|
|
||||||
bool stillAtFirstMove = FirstRootMove
|
bool stillAtFirstMove = FirstRootMove
|
||||||
&& !AspirationFailLow
|
&& !AspirationFailLow
|
||||||
&& t > MaxSearchTime + ExtraSearchTime;
|
&& t > OptimumSearchTime + ExtraSearchTime;
|
||||||
|
|
||||||
bool noMoreTime = t > AbsoluteMaxSearchTime
|
bool noMoreTime = t > MaximumSearchTime
|
||||||
|| stillAtFirstMove;
|
|| stillAtFirstMove;
|
||||||
|
|
||||||
if ( (Iteration >= 3 && UseTimeManagement && noMoreTime)
|
if ( (Iteration >= 3 && UseTimeManagement && noMoreTime)
|
||||||
|
@ -2165,9 +2165,9 @@ namespace {
|
||||||
|
|
||||||
bool stillAtFirstMove = FirstRootMove
|
bool stillAtFirstMove = FirstRootMove
|
||||||
&& !AspirationFailLow
|
&& !AspirationFailLow
|
||||||
&& t > MaxSearchTime + ExtraSearchTime;
|
&& t > OptimumSearchTime + ExtraSearchTime;
|
||||||
|
|
||||||
bool noMoreTime = t > AbsoluteMaxSearchTime
|
bool noMoreTime = t > MaximumSearchTime
|
||||||
|| stillAtFirstMove;
|
|| stillAtFirstMove;
|
||||||
|
|
||||||
if (Iteration >= 3 && UseTimeManagement && (noMoreTime || StopOnPonderhit))
|
if (Iteration >= 3 && UseTimeManagement && (noMoreTime || StopOnPonderhit))
|
||||||
|
|
|
@ -76,7 +76,7 @@ namespace {
|
||||||
|
|
||||||
/// Function Prototypes
|
/// Function Prototypes
|
||||||
|
|
||||||
enum TimeType { MaxTime, AbsTime };
|
enum TimeType { OptimumTime, MaxTime };
|
||||||
|
|
||||||
template<TimeType>
|
template<TimeType>
|
||||||
int remaining(int myTime, int movesToGo, int currentPly);
|
int remaining(int myTime, int movesToGo, int currentPly);
|
||||||
|
@ -88,7 +88,7 @@ namespace {
|
||||||
////
|
////
|
||||||
|
|
||||||
void get_search_times(int myTime, int myInc, int movesToGo, int currentPly,
|
void get_search_times(int myTime, int myInc, int movesToGo, int currentPly,
|
||||||
int* maxSearchTime, int* absoluteMaxSearchTime)
|
int* optimumSearchTime, int* maximumSearchTime)
|
||||||
{
|
{
|
||||||
/* We support four different kind of time controls:
|
/* We support four different kind of time controls:
|
||||||
|
|
||||||
|
@ -114,7 +114,7 @@ void get_search_times(int myTime, int myInc, int movesToGo, int currentPly,
|
||||||
int minThinkingTime = get_option_value_int("Minimum Thinking Time");
|
int minThinkingTime = get_option_value_int("Minimum Thinking Time");
|
||||||
|
|
||||||
// Initialize variables to maximum values
|
// Initialize variables to maximum values
|
||||||
*maxSearchTime = *absoluteMaxSearchTime = myTime;
|
*optimumSearchTime = *maximumSearchTime = myTime;
|
||||||
|
|
||||||
// We calculate optimum time usage for different hypothetic "moves to go"-values and choose the
|
// We calculate optimum time usage for different hypothetic "moves to go"-values and choose the
|
||||||
// minimum of calculated search time values. Usually the greatest hypMTG gives the minimum values.
|
// minimum of calculated search time values. Usually the greatest hypMTG gives the minimum values.
|
||||||
|
@ -123,15 +123,15 @@ void get_search_times(int myTime, int myInc, int movesToGo, int currentPly,
|
||||||
// Calculate thinking time for hypothetic "moves to go"-value
|
// Calculate thinking time for hypothetic "moves to go"-value
|
||||||
hypMyTime = Max(myTime + (hypMTG - 1) * myInc - emergencyBaseTime - Min(hypMTG, emergencyMoveHorizon) * emergencyMoveTime, 0);
|
hypMyTime = Max(myTime + (hypMTG - 1) * myInc - emergencyBaseTime - Min(hypMTG, emergencyMoveHorizon) * emergencyMoveTime, 0);
|
||||||
|
|
||||||
mTime = minThinkingTime + remaining<MaxTime>(hypMyTime, hypMTG, currentPly);
|
mTime = minThinkingTime + remaining<OptimumTime>(hypMyTime, hypMTG, currentPly);
|
||||||
aTime = minThinkingTime + remaining<AbsTime>(hypMyTime, hypMTG, currentPly);
|
aTime = minThinkingTime + remaining<MaxTime>(hypMyTime, hypMTG, currentPly);
|
||||||
|
|
||||||
*maxSearchTime = Min(*maxSearchTime, mTime);
|
*optimumSearchTime = Min(*optimumSearchTime, mTime);
|
||||||
*absoluteMaxSearchTime = Min(*absoluteMaxSearchTime, aTime);
|
*maximumSearchTime = Min(*maximumSearchTime, aTime);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Make sure that maxSearchTime is not over absoluteMaxSearchTime
|
// Make sure that maxSearchTime is not over absoluteMaxSearchTime
|
||||||
*maxSearchTime = Min(*maxSearchTime, *absoluteMaxSearchTime);
|
*optimumSearchTime = Min(*optimumSearchTime, *maximumSearchTime);
|
||||||
}
|
}
|
||||||
|
|
||||||
////
|
////
|
||||||
|
@ -143,8 +143,8 @@ namespace {
|
||||||
template<TimeType T>
|
template<TimeType T>
|
||||||
int remaining(int myTime, int movesToGo, int currentPly)
|
int remaining(int myTime, int movesToGo, int currentPly)
|
||||||
{
|
{
|
||||||
const float TMaxRatio = (T == MaxTime ? 1 : MaxRatio);
|
const float TMaxRatio = (T == OptimumTime ? 1 : MaxRatio);
|
||||||
const float TStealRatio = (T == MaxTime ? 0 : StealRatio);
|
const float TStealRatio = (T == OptimumTime ? 0 : StealRatio);
|
||||||
|
|
||||||
int thisMoveImportance = move_importance(currentPly);
|
int thisMoveImportance = move_importance(currentPly);
|
||||||
int otherMovesImportance = 0;
|
int otherMovesImportance = 0;
|
||||||
|
|
|
@ -26,6 +26,6 @@
|
||||||
////
|
////
|
||||||
|
|
||||||
void get_search_times(int myTime, int myInc, int movesToGo, int currentPly,
|
void get_search_times(int myTime, int myInc, int movesToGo, int currentPly,
|
||||||
int* maxSearchTime, int* absoluteMaxSearchTime);
|
int* optimumSearchTime, int* maximumSearchTime);
|
||||||
|
|
||||||
#endif // !defined(TIMEMAN_H_INCLUDED)
|
#endif // !defined(TIMEMAN_H_INCLUDED)
|
||||||
|
|
Loading…
Add table
Reference in a new issue