Skip to content

Commit

Permalink
cleanup state to clear model trail during calls.
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed Nov 8, 2022
1 parent 823cd23 commit 254f7b9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/tactic/dependent_expr_state_tactic.h
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ class dependent_expr_state_tactic : public tactic, public dependent_expr_state {
m_goal->inc_depth();
if (in->models_enabled())
in->add(m_model_trail->get_model_converter().get());
result.push_back(in.get());
result.push_back(in.get());
cleanup();
}

void cleanup() override {
Expand Down

0 comments on commit 254f7b9

Please sign in to comment.