Retire #ifdef SYZYGY macro

It just clutters the code for no
real reason.

No functional change.

Resolves #139
This commit is contained in:
Marco Costalba
2014-11-29 09:22:25 +01:00
committed by Joona Kiiski
parent fe07ae4cb4
commit 66f5cd3f9d
4 changed files with 4 additions and 29 deletions

View File

@@ -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);