Skip to content

Evaluating object_size requires pointer_logic.objects fully populated #53

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

Merged
merged 1 commit into from
Jun 21, 2016
Merged
Changes from all commits
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
5 changes: 3 additions & 2 deletions src/solvers/flattening/bv_pointers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -899,6 +899,9 @@ Function: bv_pointerst::post_process

void bv_pointerst::post_process()
{
// post-processing arrays may yield further objects, do this first
SUB::post_process();

for(postponed_listt::const_iterator
it=postponed_list.begin();
it!=postponed_list.end();
Expand All @@ -907,6 +910,4 @@ void bv_pointerst::post_process()

// Clear the list to avoid re-doing in case of incremental usage.
postponed_list.clear();

SUB::post_process();
}