mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-20 09:06:45 +08:00
Retire #ifdef SYZYGY macro
It just clutters the code for no real reason. No functional change. Resolves #139
This commit is contained in:
committed by
Joona Kiiski
parent
fe07ae4cb4
commit
66f5cd3f9d
@@ -26,10 +26,7 @@
|
||||
#include "thread.h"
|
||||
#include "tt.h"
|
||||
#include "uci.h"
|
||||
|
||||
#ifdef SYZYGY
|
||||
#include "syzygy/tbprobe.h"
|
||||
#endif
|
||||
|
||||
int main(int argc, char* argv[]) {
|
||||
|
||||
@@ -43,10 +40,8 @@ int main(int argc, char* argv[]) {
|
||||
Eval::init();
|
||||
Pawns::init();
|
||||
Threads.init();
|
||||
TT.resize(Options["Hash"]);
|
||||
#ifdef SYZYGY
|
||||
Tablebases::init(Options["SyzygyPath"]);
|
||||
#endif
|
||||
TT.resize(Options["Hash"]);
|
||||
|
||||
UCI::loop(argc, argv);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user