mirror of
https://github.com/Z3Prover/z3
synced 2025-04-14 04:48:45 +00:00
fix #6590
This commit is contained in:
parent
c2fe76569f
commit
8ce0c56ff5
|
@ -81,6 +81,8 @@ namespace nla {
|
|||
lbool powers::check(lpvar r, lpvar x, lpvar y, vector<lemma>& lemmas) {
|
||||
if (x == null_lpvar || y == null_lpvar || r == null_lpvar)
|
||||
return l_undef;
|
||||
if (lp::tv::is_term(x) || lp::tv::is_term(y) || lp::tv::is_term(r))
|
||||
return l_undef;
|
||||
|
||||
core& c = m_core;
|
||||
if (c.use_nra_model())
|
||||
|
|
Loading…
Reference in a new issue