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 @@ -213,9 +213,6 @@ void jbmc_parse_optionst::get_command_line_options(optionst &options)
213
213
if (cmdline.isset (" depth" ))
214
214
options.set_option (" depth" , cmdline.get_value (" depth" ));
215
215
216
- if (cmdline.isset (" debug-level" ))
217
- options.set_option (" debug-level" , cmdline.get_value (" debug-level" ));
218
-
219
216
if (cmdline.isset (" unwindset" ))
220
217
options.set_option (" unwindset" , cmdline.get_value (" unwindset" ));
221
218
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ class optionst;
45
45
OPT_FUNCTIONS \
46
46
" (no-simplify)(full-slice)" \
47
47
OPT_REACHABILITY_SLICER \
48
- " (debug-level):( no-propagation)(no-simplify-if)" \
48
+ " (no-propagation)(no-simplify-if)" \
49
49
" (document-subgoals)(outfile):" \
50
50
" (object-bits):" \
51
51
" (classpath):(cp):" \
Original file line number Diff line number Diff line change @@ -259,9 +259,6 @@ void cbmc_parse_optionst::get_command_line_options(optionst &options)
259
259
if (cmdline.isset (" depth" ))
260
260
options.set_option (" depth" , cmdline.get_value (" depth" ));
261
261
262
- if (cmdline.isset (" debug-level" ))
263
- options.set_option (" debug-level" , cmdline.get_value (" debug-level" ));
264
-
265
262
if (cmdline.isset (" slice-by-trace" ))
266
263
{
267
264
log .error () << " --slice-by-trace has been removed" << messaget::eom;
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)(outfile):(test-preprocessor)" \
49
49
" (write-solver-stats-to):" \
50
50
" (show-array-constraints)" \
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