From 23b1e04770a2275c903f49a1199fe5d24848bfb1 Mon Sep 17 00:00:00 2001 From: grunt-lucas Date: Sun, 1 Oct 2023 17:37:59 -0700 Subject: [PATCH] Update CLI param descriptions --- include/cli_options.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/include/cli_options.h b/include/cli_options.h index b65729e3..9699e456 100644 --- a/include/cli_options.h +++ b/include/cli_options.h @@ -123,19 +123,22 @@ constexpr int BEST_BRANCHES_VAL = 3002; const std::string PRIMARY_ASSIGN_EXPLORE_CUTOFF = "primary-assign-explore-cutoff"; const std::string PRIMARY_ASSIGN_EXPLORE_CUTOFF_DESC = " -" + PRIMARY_ASSIGN_EXPLORE_CUTOFF + "=\n" -" Same as '-assign-explore-cutoff', but for the paired primary set.\n"; +" Same as '-assign-explore-cutoff', but for the paired primary set. Only to be used\n" +" when compiling in secondary mode via 'compile-secondary'.\n"; constexpr int PRIMARY_ASSIGN_EXPLORE_CUTOFF_VAL = 3003; const std::string PRIMARY_ASSIGN_ALGO = "primary-assign-algorithm"; const std::string PRIMARY_ASSIGN_ALGO_DESC = " -" + PRIMARY_ASSIGN_ALGO + "=\n" -" Same as '-assign-algorithm', but for the paired primary set.\n"; +" Same as '-assign-algorithm', but for the paired primary set. Only to be used\n" +" when compiling in secondary mode via 'compile-secondary'.\n"; constexpr int PRIMARY_ASSIGN_ALGO_VAL = 3004; const std::string PRIMARY_BEST_BRANCHES = "primary-best-branches"; const std::string PRIMARY_BEST_BRANCHES_DESC = " -" + PRIMARY_BEST_BRANCHES + "=\n" -" Same as '-best-branches', but for the paired primary set.\n"; +" Same as '-best-branches', but for the paired primary set. Only to be used\n" +" when compiling in secondary mode via 'compile-secondary'.\n"; constexpr int PRIMARY_BEST_BRANCHES_VAL = 3005;