Skip to content

Commit

Permalink
Update CLI param descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
grunt-lucas committed Oct 2, 2023
1 parent f82208b commit 23b1e04
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions include/cli_options.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 + "=<FACTOR>\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 + "=<ALGORITHM>\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>\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;


Expand Down

0 comments on commit 23b1e04

Please sign in to comment.