From 9da0b61d30980041183aab55eb259c93aab78281 Mon Sep 17 00:00:00 2001 From: Nikolaj Bjorner Date: Thu, 21 May 2020 21:04:43 -0700 Subject: [PATCH] na --- src/ast/ast.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/ast/ast.cpp b/src/ast/ast.cpp index bc7bd5edb..641c01285 100644 --- a/src/ast/ast.cpp +++ b/src/ast/ast.cpp @@ -3099,7 +3099,10 @@ proof * ast_manager::mk_unit_resolution(unsigned num_proofs, proof * const * pro } if (!found_complement) { args.append(num_proofs, (expr**)proofs); - CTRACE("mk_unit_resolution_bug", !is_or(f1), tout << mk_ll_pp(f1, *this) << "\n";); + CTRACE("mk_unit_resolution_bug", !is_or(f1), tout << mk_ll_pp(f1, *this) << "\n"; + for (unsigned i = 1; i < num_proofs; ++i) + tout << mk_pp(proofs[i], *this) << "\n"; + ); SASSERT(is_or(f1)); ptr_buffer new_lits; app const * cls = to_app(f1);