diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2023-05-25 11:42:29 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2023-05-25 11:42:29 +0200 |
commit | 7a32507dbe582a55e1be23d173c68bd41f5f6e58 (patch) | |
tree | 09ccef22fe5e271aff95bd5e7db7cd6bf6fe0c74 /BFS/support/params.h | |
parent | a99cfb6dc769226a9bdfaee1956ff40c98528de8 (diff) |
port BFS PIM to dfatool
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) { |