Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tryingsomestuff committed Sep 14, 2019
1 parent a6abaee commit a51daa1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Add-On/testSuite.cc
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ void ExtendedPosition::testStatic(const std::vector<std::string> & positions,
ExtendedPosition extP(positions[k], withMoveCount);
//std::cout << " " << t << std::endl;
float gp = 0;
ScoreType ret = eval(extP,gp);
ScoreType ret = ThreadPool::instance().main().eval(extP,gp);

results[k].name = extP.id();
results[k].k = (int)k;
Expand Down
6 changes: 3 additions & 3 deletions minic.cc
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ typedef uint64_t u_int64_t;
#include "json.hpp"

//#define IMPORTBOOK
#define WITH_TEXEL_TUNING
//#define WITH_TEXEL_TUNING
//#define DEBUG_TOOL
//#define WITH_TEST_SUITE
//#define WITH_SYZYGY
#define WITH_SYZYGY
#define WITH_UCI
#define WITH_PGN_PARSER
//#define WITH_PGN_PARSER

const std::string MinicVersion = "dev";

Expand Down

0 comments on commit a51daa1

Please sign in to comment.