Skip to content

Commit

Permalink
Merge pull request #522 from beomki-yeo/fix-default-option-range
Browse files Browse the repository at this point in the history
Fix the default candidate range
  • Loading branch information
krasznaa committed Feb 27, 2024
2 parents 3d8daab + e13f032 commit 8d13bd8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ struct finding_input_config {
desc.add_options()("track-candidates-range",
po::value<Reals<unsigned int, 2>>()
->value_name("MIN:MAX")
->default_value({3, 10000}),
->default_value({3, 100}),
"Range of track candidates number");
desc.add_options()(
"chi2-max",
Expand Down

0 comments on commit 8d13bd8

Please sign in to comment.