We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d4c4a8 commit 9795351Copy full SHA for 9795351
src/goto-checker/symex_bmc_incremental_one_loop.cpp
@@ -37,8 +37,12 @@ symex_bmc_incremental_one_loopt::symex_bmc_incremental_one_loopt(
37
: 0),
38
output_ui(output_ui)
39
{
40
+ // the intended behaviour is to stop asserts that are violated before the
41
+ // unwind
42
+ // therefore if the min-unwind is 1, then we do one unwind and immediately
43
+ // start checking for properties
44
ignore_assertions =
- incr_min_unwind >= 1 &&
45
+ incr_min_unwind > 1 &&
46
options.get_bool_option("ignore-properties-before-unwind-min");
47
}
48
0 commit comments