3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-29 07:27:57 +00:00

remove print directive that doesn't compile

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-03-03 20:48:13 -08:00
parent 0c0e79a937
commit 5c13acbf9f
2 changed files with 18 additions and 15 deletions

View file

@ -1704,9 +1704,13 @@ public:
continue;
}
if (a.is_numeral(q, r2) && r2.is_pos() && is_bounded(n)) {
if (a.is_numeral(q, r2) && r2.is_pos()) {
rational val_v = get_value(v);
if (val_v == div(r1, r2)) continue;
if (!is_bounded(n)) {
TRACE("arith", tout << "unbounded " << expr_ref(n, m) << "\n";);
continue;
}
TRACE("arith", tout << get_value(v) << " != " << r1 << " div " << r2 << "\n";);
rational div_r = div(r1, r2);