3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 01:25:31 +00:00
This commit is contained in:
Nikolaj Bjorner 2021-07-20 15:29:24 -07:00
parent 134562162a
commit 574246ff7a
2 changed files with 7 additions and 8 deletions

View file

@ -150,9 +150,9 @@ struct evaluator_cfg : public default_rewriter_cfg {
br_status reduce_app(func_decl * f, unsigned num, expr * const * args, expr_ref & result, proof_ref & result_pr) {
auto st = reduce_app_core(f, num, args, result, result_pr);
CTRACE("model_evaluator", st != BR_FAILED,
tout << f->get_name() << "\n";
for (unsigned i = 0; i < num; ++i) tout << mk_pp(args[i], m) << "\n";
tout << result << "\n";);
tout << f->get_name() << " ";
for (unsigned i = 0; i < num; ++i) tout << mk_pp(args[i], m) << " ";
tout << "\n--> " << result << "\n";);
return st;
}