Skip to content

Commit

Permalink
fixed commandline options
Browse files Browse the repository at this point in the history
  • Loading branch information
Buote Xu authored and Buote Xu committed Jun 15, 2012
1 parent dfe8604 commit dce6531
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/example-bruker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,10 @@ int parseProgramOptions(int argc, char* argv[], ProgramOptions& options)
config.add_options()
("segments", po::value<unsigned int>(&options.segments_)->default_value(
1),
"Number of segments the data should be partitioned in before using libfbi)
("overlap", po::value<double>(&options.overlap_)->default_value(
"Number of segments the data should be partitioned in before using libfbi")
("overlap", po::value<unsigned int>(&options.overlap_)->default_value(
0),
"Overlap in time-dimension taken into account to not have 'jumps'");
"Overlap in time-dimension taken into account to not have jumps");

po::options_description cmdline_options("Options available via command line");
cmdline_options.add(generic).add(config);
Expand Down

0 comments on commit dce6531

Please sign in to comment.