3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-05 19:00:25 +00:00
This commit is contained in:
Nikolaj Bjorner 2020-11-11 17:37:00 -08:00
parent aced115b70
commit 7e68d546ba
4 changed files with 11 additions and 10 deletions

View file

@ -278,12 +278,12 @@ struct goal2sat::imp : public sat::sat_internalizer {
l = sign ? mk_true() : ~mk_true();
}
else {
if (m_euf) {
convert_euf(t, root, sign);
return;
}
if (!is_uninterp_const(t)) {
if (m_euf) {
convert_euf(t, root, sign);
return;
}
else if (!is_app(t)) {
if (!is_app(t)) {
std::ostringstream strm;
strm << mk_ismt2_pp(t, m);
throw_op_not_handled(strm.str());