From 2aedb0ef4a005a0a17d8a79bd74ffc24def51316 Mon Sep 17 00:00:00 2001 From: john-sp Date: Tue, 21 Oct 2025 06:16:46 -0700 Subject: [PATCH] Change visibility of options to always visible --- src/search/dag_classic/wrapper.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/search/dag_classic/wrapper.cc b/src/search/dag_classic/wrapper.cc index aa5c3758b0..7930210dc8 100644 --- a/src/search/dag_classic/wrapper.cc +++ b/src/search/dag_classic/wrapper.cc @@ -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: