Skip to content

Commit

Permalink
fix #6590
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed Feb 15, 2023
1 parent c2fe765 commit 8ce0c56
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/math/lp/nla_powers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down

0 comments on commit 8ce0c56

Please sign in to comment.