diff options
Diffstat (limited to 'BFS/support/params.h')
-rw-r--r-- | BFS/support/params.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BFS/support/params.h b/BFS/support/params.h index 9bf9158..f4f12e7 100644 --- a/BFS/support/params.h +++ b/BFS/support/params.h @@ -25,7 +25,7 @@ typedef struct Params { static struct Params input_params(int argc, char **argv) { struct Params p; p.fileName = "data/roadNet-CA.txt"; - p.verbosity = 1; + p.verbosity = 0; int opt; while((opt = getopt(argc, argv, "f:v:h")) >= 0) { switch(opt) { |