summaryrefslogtreecommitdiff
path: root/src/chess.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/chess.h')
-rwxr-xr-xsrc/chess.h12
1 files changed, 1 insertions, 11 deletions
diff --git a/src/chess.h b/src/chess.h
index 9722414..6cd2d7a 100755
--- a/src/chess.h
+++ b/src/chess.h
@@ -1900,7 +1900,6 @@ extern VECTOR_DELTA g_VectorDelta[256];
extern VECTOR_DELTA *g_pVectorDelta;
extern CHAR g_SwapTable[14][32][32];
extern SCORE _PSQT[14][128];
-extern ULONG g_uSearchSortLimits[];
extern MOVE NULLMOVE;
extern MOVE HASHMOVE;
extern MOVE RECOGNMOVE;
@@ -1931,17 +1930,8 @@ InitializeSwapTable(void);
void
InitializeDistanceTable(void);
-void
-InitializeSearchDepthArray(void);
-
ULONG
-GetSearchSortLimit(ULONG);
-
-#ifdef DEBUG
-#define SEARCH_SORT_LIMIT(x) (GetSearchSortLimit((x)))
-#else
-#define SEARCH_SORT_LIMIT(x) (g_uSearchSortLimits[(x)])
-#endif
+NumLeftoverMovesToSelect(SEARCHER_THREAD_CONTEXT *ctx, ULONG uDepth);
#ifdef DEBUG
ULONG CheckVectorWithIndex(int i, ULONG uColor);