diff --git a/ex-7/test.c b/ex-7/test.c index c325d3d..0914bda 100644 --- a/ex-7/test.c +++ b/ex-7/test.c @@ -54,7 +54,7 @@ int show_help(char **argv) { fprintf(stderr, " -s N\t\tThe number of events in signal class.\n"); fprintf(stderr, " -n N\t\tThe number of events in noise class.\n"); fprintf(stderr, "\nRun tests classifying randomly generated data, " - "using the given WEIGHT and CUTs.\n"); + "using the given WEIGHTs and CUTs.\n"); return EXIT_FAILURE; } @@ -62,9 +62,9 @@ int show_help(char **argv) { int main(int argc, char **argv) { /* Set default options */ struct options opts; + opts.iter = 500; opts.nsig = 800; opts.nnoise = 1000; - opts.iter = 500; /* Process CLI arguments */ if (argc < 2) return show_help(argv);