Skip to content

Commit

Permalink
release 0.60
Browse files Browse the repository at this point in the history
  • Loading branch information
tryingsomestuff committed May 23, 2019
1 parent bcbca37 commit 55821ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions minic.cc
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ typedef uint64_t u_int64_t;
//#define WITH_SYZYGY
//#define WITH_UCI

const std::string MinicVersion = "dev";
const std::string MinicVersion = "0.60";

/*
//todo
Expand Down Expand Up @@ -1415,7 +1415,7 @@ Counter ThreadPool::counter(Stats::StatId id) const { Counter n = 0; for (auto i
bool apply(Position & p, const Move & m); //forward decl

namespace TT{
enum Bound{ B_exact = 0, B_alpha = 1, B_beta = 2, B_qsearch = 3 };
enum Bound{ B_exact = 0, B_alpha = 1, B_beta = 2};
struct Entry{
Entry():m(INVALIDMOVE),score(0),eval(0),b(B_alpha),d(-1),h(0ull){}
Entry(Move m, ScoreType s, ScoreType e, Bound b, DepthType d, Hash h) : m(m), score(s), eval(e), b(b), d(d), h(h){}
Expand Down

0 comments on commit 55821ef

Please sign in to comment.