mirror of
https://github.com/Z3Prover/z3
synced 2025-08-04 02:10:23 +00:00
fix regressions breaking build
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
c022d47d60
commit
cc216f8cc3
2 changed files with 5 additions and 7 deletions
|
@ -327,7 +327,6 @@ class nla2bv_tactic : public tactic {
|
|||
}
|
||||
void operator()(app* n) {
|
||||
if (a.is_int(n) && is_uninterp_const(n)) {
|
||||
TRACE("nla2bv", tout << "Not supported: " << mk_ismt2_pp(n, m) << "\n";);
|
||||
m_vars.push_back(n);
|
||||
}
|
||||
else if (a.is_real(n) && is_uninterp_const(n)) {
|
||||
|
@ -371,7 +370,7 @@ class nla2bv_tactic : public tactic {
|
|||
add_var(fe_var.vars()[i]);
|
||||
}
|
||||
if (!fe_var.is_supported()) return not_supported;
|
||||
if (!fe_var.vars().empty()) return is_bool;
|
||||
if (fe_var.vars().empty()) return is_bool;
|
||||
return has_num;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue