File tree 6 files changed +2
-12
lines changed
6 files changed +2
-12
lines changed Original file line number Diff line number Diff line change @@ -205,9 +205,6 @@ void jbmc_parse_optionst::get_command_line_options(optionst &options)
205
205
if (cmdline.isset (" depth" ))
206
206
options.set_option (" depth" , cmdline.get_value (" depth" ));
207
207
208
- if (cmdline.isset (" debug-level" ))
209
- options.set_option (" debug-level" , cmdline.get_value (" debug-level" ));
210
-
211
208
if (cmdline.isset (" unwindset" ))
212
209
options.set_option (" unwindset" , cmdline.get_value (" unwindset" ));
213
210
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ class optionst;
44
44
OPT_FUNCTIONS \
45
45
" (no-simplify)(full-slice)" \
46
46
OPT_REACHABILITY_SLICER \
47
- " (debug-level):( no-propagation)(no-simplify-if)" \
47
+ " (no-propagation)(no-simplify-if)" \
48
48
" (document-subgoals)" \
49
49
" (object-bits):" \
50
50
" (classpath):(cp):" \
Original file line number Diff line number Diff line change @@ -258,9 +258,6 @@ void cbmc_parse_optionst::get_command_line_options(optionst &options)
258
258
if (cmdline.isset (" depth" ))
259
259
options.set_option (" depth" , cmdline.get_value (" depth" ));
260
260
261
- if (cmdline.isset (" debug-level" ))
262
- options.set_option (" debug-level" , cmdline.get_value (" debug-level" ));
263
-
264
261
if (cmdline.isset (" slice-by-trace" ))
265
262
{
266
263
log .error () << " --slice-by-trace has been removed" << messaget::eom;
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ class optionst;
38
38
OPT_FUNCTIONS \
39
39
" (no-simplify)(full-slice)" \
40
40
OPT_REACHABILITY_SLICER \
41
- " (debug-level):( no-propagation)(no-simplify-if)" \
41
+ " (no-propagation)(no-simplify-if)" \
42
42
" (document-subgoals)(test-preprocessor)" \
43
43
" (show-array-constraints)" \
44
44
OPT_CONFIG_C_CPP \
Original file line number Diff line number Diff line change @@ -36,8 +36,6 @@ struct symex_configt final
36
36
37
37
bool havoc_undefined_functions;
38
38
39
- mp_integer debug_level;
40
-
41
39
// / \brief Should the additional validation checks be run?
42
40
// / If this flag is set the checks for renaming (both level1 and level2) are
43
41
// / executed in the goto_symex_statet (in the assignment method).
Original file line number Diff line number Diff line change 25
25
#include < util/mathematical_expr.h>
26
26
#include < util/replace_symbol.h>
27
27
#include < util/std_expr.h>
28
- #include < util/string2int.h>
29
28
#include < util/symbol_table.h>
30
29
31
30
#include " path_storage.h"
@@ -43,7 +42,6 @@ symex_configt::symex_configt(const optionst &options)
43
42
partial_loops(options.get_bool_option(" partial-loops" )),
44
43
havoc_undefined_functions(
45
44
options.get_bool_option(" havoc-undefined-functions" )),
46
- debug_level(unsafe_string2int(options.get_option(" debug-level" ))),
47
45
run_validation_checks(options.get_bool_option(" validate-ssa-equation" )),
48
46
show_symex_steps(options.get_bool_option(" show-goto-symex-steps" )),
49
47
show_points_to_sets(options.get_bool_option(" show-points-to-sets" )),
You can’t perform that action at this time.
0 commit comments