File tree Expand file tree Collapse file tree 3 files changed +0
-11
lines changed
regression/jbmc/output-options Expand file tree Collapse file tree 3 files changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ propagation: "1"
1212refine-strings: "1"
1313sat-preprocessor: "1"
1414simplify: "1"
15- simplify-if: "1"
1615symex-driven-lazy-loading: "0"
1716throw-assertion-error: "1"
1817throw-runtime-exceptions: "0"
Original file line number Diff line number Diff line change @@ -99,7 +99,6 @@ void jbmc_parse_optionst::set_default_options(optionst &options)
9999 options.set_option (" refine-strings" , true );
100100 options.set_option (" simple-slice" , true );
101101 options.set_option (" simplify" , true );
102- options.set_option (" simplify-if" , true );
103102 options.set_option (" show-goto-symex-steps" , false );
104103
105104 // Other default
@@ -242,10 +241,6 @@ void jbmc_parse_optionst::get_command_line_options(optionst &options)
242241 " slice-formula" ,
243242 cmdline.isset (" slice-formula" ));
244243
245- // simplify if conditions and branches
246- if (cmdline.isset (" no-simplify-if" ))
247- options.set_option (" simplify-if" , false );
248-
249244 if (cmdline.isset (" arrays-uf-always" ))
250245 options.set_option (" arrays-uf" , " always" );
251246 else if (cmdline.isset (" arrays-uf-never" ))
Original file line number Diff line number Diff line change @@ -107,7 +107,6 @@ void cbmc_parse_optionst::set_default_options(optionst &options)
107107 options.set_option (" propagation" , true );
108108 options.set_option (" simple-slice" , true );
109109 options.set_option (" simplify" , true );
110- options.set_option (" simplify-if" , true );
111110 options.set_option (" show-goto-symex-steps" , false );
112111 options.set_option (" show-points-to-sets" , false );
113112 options.set_option (" show-array-constraints" , false );
@@ -284,10 +283,6 @@ void cbmc_parse_optionst::get_command_line_options(optionst &options)
284283 if (cmdline.isset (" slice-formula" ))
285284 options.set_option (" slice-formula" , true );
286285
287- // simplify if conditions and branches
288- if (cmdline.isset (" no-simplify-if" ))
289- options.set_option (" simplify-if" , false );
290-
291286 if (cmdline.isset (" arrays-uf-always" ))
292287 options.set_option (" arrays-uf" , " always" );
293288 else if (cmdline.isset (" arrays-uf-never" ))
You can’t perform that action at this time.
0 commit comments