Skip to content

Commit

Permalink
fix #5139
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Mar 29, 2021
1 parent 94b4d1b commit c629f09
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/sat/tactic/goal2sat.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ struct goal2sat::imp : public sat::sat_internalizer {
if (m_euf) {
convert_euf(t, root, sign);
return;
}
}
if (!is_uninterp_const(t)) {
if (!is_app(t)) {
std::ostringstream strm;
Expand Down Expand Up @@ -938,14 +938,10 @@ struct goal2sat::imp : public sat::sat_internalizer {
}

void user_push() {
push();
force_push();
}

void user_pop(unsigned n) {
m_true = sat::null_literal;
pop(n);

m_true = sat::null_literal;
}

};
Expand Down

0 comments on commit c629f09

Please sign in to comment.