Skip to content

Incremental unwinding of one specified loop #4361

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion regression/cbmc-incr-oneloop/minmaxunwind4/test.desc
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
CORE
main.c
--unwind-min 6 --unwind-max 8 --incremental-loop main.0
--unwind-min 6 --unwind-max 8 --incremental-loop main.0 --ignore-properties-before-unwind-min
^EXIT=10$
^SIGNAL=0$
^VERIFICATION FAILED$
^Generated 1 VCC\(s\), \d+ remaining after simplification$
--
^Generated 6 VCC\(s\), \d+ remaining after simplification$
^warning: ignoring
2 changes: 2 additions & 0 deletions src/goto-checker/symex_bmc_incremental_one_loop.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ symex_bmc_incremental_one_loopt::symex_bmc_incremental_one_loopt(
options.is_set("unwind-min") ? options.get_signed_int_option("unwind-min")
: 0)
{
ignore_assertions =
options.get_bool_option("ignore-properties-before-unwind-min");
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

When was this option introduced and where is it documented?

}

bool symex_bmc_incremental_one_loopt::should_stop_unwind(
Expand Down