mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
parent
64a0e62648
commit
c431a100b7
1 changed files with 4 additions and 1 deletions
|
@ -146,7 +146,10 @@ namespace smt {
|
|||
SASSERT(m_autil.is_le(n) || m_autil.is_ge(n));
|
||||
app * lhs = to_app(n->get_arg(0));
|
||||
app * rhs = to_app(n->get_arg(1));
|
||||
SASSERT(m_autil.is_numeral(rhs));
|
||||
if (!m_autil.is_numeral(rhs)) {
|
||||
found_non_diff_logic_expr(n);
|
||||
return false;
|
||||
}
|
||||
rational _k;
|
||||
m_autil.is_numeral(rhs, _k);
|
||||
numeral offset(_k);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue