Skip to content

Commit

Permalink
restore verbosity option
Browse files Browse the repository at this point in the history
  • Loading branch information
jwuttke committed Nov 24, 2017
1 parent 4c293e8 commit 9c242dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fittest/runfittest.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ int main(int argc, char **argv)
control.patience = 1000;
// Parse minimizer-specific options.
int c;
while ((c = getopt (argc, argv, "he:t:")) != -1) {
while ((c = getopt (argc, argv, "he:t:v:")) != -1) {
switch (c) {
case 'e':
control.epsilon = atof(optarg);
Expand All @@ -52,10 +52,10 @@ int main(int argc, char **argv)
case 'p':
control.patience = atoi(optarg);
break;
case 'V':
*/
case 'v':
control.verbosity = atoi(optarg);
break;
*/
case 'h':
print_help();
}
Expand Down

0 comments on commit 9c242dc

Please sign in to comment.