3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 01:25:31 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-04-06 13:57:38 -07:00
parent 5acf4b5968
commit 16be6b9162
2 changed files with 13 additions and 10 deletions

View file

@ -161,10 +161,7 @@ bool arith_eq_solver::solve_integer_equation(
bool& is_fresh
)
{
TRACE("arith_eq_solver",
tout << "solving: ";
print_row(tout, values);
);
TRACE("arith_eq_solver", print_row(tout << "solving: ", values); );
//
// perform one step of the omega test equality elimination.
//
@ -201,8 +198,7 @@ bool arith_eq_solver::solve_integer_equation(
return false;
gcd_normalize(values);
if (!gcd_test(values)) {
TRACE("arith_eq_solver", tout << "not sat\n";
print_row(tout, values););
TRACE("arith_eq_solver", print_row(tout << "not sat\n", values););
return false;
}
index = find_abs_min(values);