File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -5,9 +5,10 @@ args "--unamed-opts"
5
5
6
6
# Options
7
7
option "output" o "Output file" string typestr="filename"
8
- option "quiet" q "Output only the result" flag off
9
- option "log" l "Log file (default=stderr)" string typestr="filename" optional
10
8
option "strategy" s "Strategy" int optional
9
+ option "quiet" q "Output only the result" flag off
10
+ option "verbose" v "Logs some information" flag off
11
+ option "debug" d "Detailed log for debugging" flag off
11
12
details="\n
12
13
The id code of the strategy used in selecting the next character to be realized,
13
14
according to the following table:\n
Original file line number Diff line number Diff line change 26
26
27
27
int main (int argc , char * * argv ) {
28
28
static struct gengetopt_args_info args_info ;
29
- assert (cmdline_parser (argc , argv , & args_info ) == 0 );
29
+ assert (cmdline_parser (argc , argv , & args_info ) == 0 );
30
30
assert (args_info .inputs_num >= 1 );
31
- start_logging (args_info . quiet_given , args_info . log_given , args_info . log_arg );
31
+ start_logging (args_info );
32
32
33
33
igraph_i_set_attribute_table (& igraph_cattribute_table );
34
34
pp_instance temp = read_instance_from_filename (args_info .inputs [0 ]);
You can’t perform that action at this time.
0 commit comments