summaryrefslogtreecommitdiff
path: root/src/movesup.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/movesup.c')
-rwxr-xr-xsrc/movesup.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/movesup.c b/src/movesup.c
index 8aa8ffa..dec090c 100755
--- a/src/movesup.c
+++ b/src/movesup.c
@@ -988,7 +988,7 @@ Return value:
}
-void FASTCALL
+void FASTCALL
SelectBestWithHistory(SEARCHER_THREAD_CONTEXT *ctx,
ULONG u)
/**
@@ -1017,11 +1017,11 @@ Return value:
SCORE iVal;
MOVE mv;
MOVE_STACK_MOVE_VALUE_FLAGS mvfTemp;
-
+
ASSERT(ctx->sMoveStack.uBegin[ctx->uPly] <= uEnd);
ASSERT(u >= ctx->sMoveStack.uBegin[ctx->uPly]);
ASSERT(u < uEnd);
-
+
//
// Linear search from u..ctx->sMoveStack.uEnd[ctx->uPly] for the
// move with the best value.
@@ -1033,7 +1033,7 @@ Return value:
iBestVal += g_HistoryCounters[mv.pMoved][mv.cTo];
}
uLoc = u;
-
+
for (v = u + 1; v < uEnd; v++)
{
iVal = ctx->sMoveStack.mvf[v].iValue;
@@ -1058,7 +1058,7 @@ Return value:
}
-void FASTCALL
+void FASTCALL
SelectBestNoHistory(SEARCHER_THREAD_CONTEXT *ctx,
ULONG u)
/**