File tree Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -113,6 +113,7 @@ void jbmc_parse_optionst::set_default_options(optionst &options)
113
113
114
114
// Other default
115
115
options.set_option (" arrays-uf" , " auto" );
116
+ options.set_option (" depth" , UINT32_MAX);
116
117
}
117
118
118
119
void jbmc_parse_optionst::get_command_line_options (optionst &options)
Original file line number Diff line number Diff line change @@ -117,6 +117,7 @@ void cbmc_parse_optionst::set_default_options(optionst &options)
117
117
118
118
// Other default
119
119
options.set_option (" arrays-uf" , " auto" );
120
+ options.set_option (" depth" , UINT32_MAX);
120
121
}
121
122
122
123
void cbmc_parse_optionst::get_command_line_options (optionst &options)
Original file line number Diff line number Diff line change @@ -612,7 +612,7 @@ void goto_symext::execute_next_instruction(
612
612
merge_gotos (state);
613
613
614
614
// depth exceeded?
615
- if (symex_config. max_depth != 0 && state.depth > symex_config.max_depth )
615
+ if (state.depth > symex_config.max_depth )
616
616
{
617
617
// Rule out this path:
618
618
symex_assume_l2 (state, false_exprt ());
You can’t perform that action at this time.
0 commit comments