@@ -154,7 +154,7 @@ typedef enum optid {
154154 verbosity_opt , // set verbosity on the command line
155155 incremental_opt , // enable incremental mode
156156 interactive_opt , // enable interactive mode
157- yicesformat_opt , // use the Yices model format for models
157+ smt2format_opt , // use SMT-LIB2 format for models
158158 bvdecimal_opt , // use (_ bv<xxx> n) for bit-vector constants
159159 timeout_opt , // give a timeout
160160 delegate_opt , // use an external sat solver
@@ -203,7 +203,7 @@ static option_desc_t options[NUM_OPTIONS] = {
203203 { "timeout" , 't' , MANDATORY_INT , timeout_opt },
204204 { "incremental" , '\0' , FLAG_OPTION , incremental_opt },
205205 { "interactive" , '\0' , FLAG_OPTION , interactive_opt },
206- { "yices -model-format" , '\0' , FLAG_OPTION , yicesformat_opt },
206+ { "smt2 -model-format" , '\0' , FLAG_OPTION , smt2format_opt },
207207 { "bvconst-in-decimal" , '\0' , FLAG_OPTION , bvdecimal_opt },
208208 { "delegate" , '\0' , MANDATORY_STRING , delegate_opt },
209209 { "dimacs" , '\0' , MANDATORY_STRING , dimacs_opt },
@@ -267,7 +267,7 @@ static void print_help(const char *progname) {
267267 " --stats, -s Print statistics once all commands have been processed\n"
268268 " --incremental Enable support for push/pop\n"
269269 " --interactive Run in interactive mode (ignored if a filename is given)\n"
270- " --yices -model-format Display models in the Yices model format (default = false)\n"
270+ " --smt2 -model-format Display models in the SMT-LIB 2 format (default = false)\n"
271271 " --bvconst-in-decimal Display bit-vector constants as decimal numbers (default = false)\n"
272272 " --delegate=<satsolver> Use an external SAT solver (can be cadical, cryptominisat, kissat, or y2sat)\n"
273273 " --dimacs=<filename> Bitblast and export to a file (in DIMACS format)\n"
@@ -374,7 +374,7 @@ static void parse_command_line(int argc, char *argv[]) {
374374 filename = NULL ;
375375 incremental = false;
376376 interactive = false;
377- smt2_model_format = true ;
377+ smt2_model_format = false ;
378378 bvdecimal = false;
379379 show_stats = false;
380380 verbosity = 0 ;
@@ -523,8 +523,8 @@ static void parse_command_line(int argc, char *argv[]) {
523523 }
524524 break ;
525525
526- case yicesformat_opt :
527- smt2_model_format = false ;
526+ case smt2format_opt :
527+ smt2_model_format = true ;
528528 break ;
529529
530530 case bvdecimal_opt :
0 commit comments