Skip to content

Commit

Permalink
trying adaptative pruning hash/eval score
Browse files Browse the repository at this point in the history
  • Loading branch information
Vivien Clauzon committed Jun 10, 2019
1 parent d2f9791 commit 6909b4f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions minic.cc
Expand Up @@ -248,18 +248,18 @@ const bool doQFutility = true;
const bool doProbcut = true;
const bool doHistoryPruning = false; ///@todo
// first value if eval score is used, second if hash score is used
const ScoreType qfutilityMargin [2] = {128, 128};
const ScoreType qfutilityMargin [2] = {128, 80};
const int staticNullMoveMaxDepth [2] = {6 , 6};
const ScoreType staticNullMoveDepthCoeff [2] = {80 , 80};
const ScoreType staticNullMoveDepthInit [2] = {0 , 0};
const ScoreType razoringMarginDepthCoeff [2] = {0 , 0};
const ScoreType razoringMarginDepthInit [2] = {200, 200};
const ScoreType razoringMarginDepthInit [2] = {200, 100};
const int razoringMaxDepth [2] = {3 , 3};
const int nullMoveMinDepth = 2;
const int lmpMaxDepth = 10;
const int historyPuningMaxDepth = 3;
const ScoreType historyPuningThreshold = 300;
const ScoreType futilityDepthCoeff [2] = {160, 160};
const ScoreType futilityDepthCoeff [2] = {160, 80};
const ScoreType futilityDepthInit [2] = {0 , 0};
const int iidMinDepth = 5;
const int iidMinDepth2 = 8;
Expand Down

0 comments on commit 6909b4f

Please sign in to comment.