mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 16:47:37 +00:00
Change default value of "PruneAtShallowDepthOnPvNode" so that the bench matches master.
This commit is contained in:
+1
-1
@@ -54,7 +54,7 @@ using std::string;
|
||||
using Eval::evaluate;
|
||||
using namespace Search;
|
||||
|
||||
bool Search::prune_at_shallow_depth_on_pv_node = false;
|
||||
bool Search::prune_at_shallow_depth_on_pv_node = true;
|
||||
|
||||
namespace {
|
||||
|
||||
|
||||
+1
-1
@@ -101,7 +101,7 @@ void init(OptionsMap& o) {
|
||||
// Automatically create a folder under this folder like "0/", "1/", ... and save the evaluation function file there.
|
||||
o["EvalSaveDir"] << Option("evalsave");
|
||||
// Prune at shallow depth on PV nodes. Setting this value to true gains elo in shallow search.
|
||||
o["PruneAtShallowDepthOnPvNode"] << Option(false, on_prune_at_shallow_depth_on_pv_node);
|
||||
o["PruneAtShallowDepthOnPvNode"] << Option(true, on_prune_at_shallow_depth_on_pv_node);
|
||||
// Enable transposition table.
|
||||
o["EnableTranspositionTable"] << Option(true, on_enable_transposition_table);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user