mirror of
https://github.com/sockspls/badfish
synced 2025-04-29 16:23:09 +00:00
Remove unused method
init() is no longer used, and was previously replaced by the clear function. fixes https://github.com/official-stockfish/Stockfish/issues/4981 No functional change
This commit is contained in:
parent
eec361f64c
commit
cf5b070913
1 changed files with 1 additions and 2 deletions
|
@ -48,8 +48,6 @@ class UCI;
|
|||
|
||||
namespace Search {
|
||||
|
||||
// Called at startup to initialize various lookup tables, after program startup
|
||||
void init(int);
|
||||
|
||||
// Stack struct keeps track of the information we need to remember from nodes
|
||||
// shallower and deeper in the tree during the search. Each search thread has
|
||||
|
@ -176,6 +174,7 @@ class Worker {
|
|||
public:
|
||||
Worker(SharedState&, std::unique_ptr<ISearchManager>, size_t);
|
||||
|
||||
// Called at instantiation to initialize Reductions tables
|
||||
// Reset histories, usually before a new game
|
||||
void clear();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue