Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/search/dag_classic/wrapper.cc
Original file line number Diff line number Diff line change
Expand Up @@ -52,18 +52,18 @@ const OptionId kBadMovePolicyThresholdId{
{.long_flag = "bad-move-policy-threshold",
.uci_option = "BadMovePolicyThreshold",
.help_text = "Policy threshold for bad moves in dag-preview search.",
.visibility = OptionId::kProOnly}};
.visibility = OptionId::kAlwaysVisible}};
const OptionId kBadMovePolicyFactorId{
{.long_flag = "bad-move-policy-factor",
.uci_option = "BadMovePolicyFactor",
.help_text = "Policy factor for bad moves in dag-preview search.",
.visibility = OptionId::kProOnly}};
.visibility = OptionId::kAlwaysVisible}};
const OptionId kStaticExchangeThresholdOptionId{
{.long_flag = "static-exchange-threshold",
.uci_option = "StaticExchangeThreshold",
.help_text =
"Static exchange evaluation threshold for dag-preview search.",
.visibility = OptionId::kProOnly}};
.visibility = OptionId::kAlwaysVisible}};

class DagClassicSearch : public SearchBase {
public:
Expand Down