From 8269b1587acc846eadf74ad823f53123d63edf8a Mon Sep 17 00:00:00 2001 From: Calcitem Date: Sat, 2 Jan 2021 13:18:48 +0800 Subject: [PATCH] Remve PV/nonPV code --- src/search.cpp | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/search.cpp b/src/search.cpp index 6e8d26c5..fd982b6d 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -45,17 +45,6 @@ Value MTDF(Position *pos, Sanmill::Stack &ss, Value firstguess, Depth Value search(Position *pos, Sanmill::Stack &ss, Depth depth, Depth originDepth, Value alpha, Value beta, Move &bestMove); -namespace -{ - -// Different node types, used as a template parameter -enum NodeType -{ - NonPV, PV -}; - -} // namespace - /// Search::init() is called at startup to initialize various lookup tables