mirror of
https://github.com/Z3Prover/z3
synced 2025-05-11 09:44:43 +00:00
Improved quantifier instantiation logging
This commit is contained in:
parent
41e0a12678
commit
7585f28dec
10 changed files with 108 additions and 24 deletions
|
@ -26,6 +26,7 @@ Revision History:
|
|||
#include "smt/smt_context.h"
|
||||
#include "smt/smt_model_finder.h"
|
||||
#include "model/model_pp.h"
|
||||
#include <tuple>
|
||||
|
||||
namespace smt {
|
||||
|
||||
|
@ -476,7 +477,7 @@ namespace smt {
|
|||
void model_checker::assert_new_instances() {
|
||||
TRACE("model_checker_bug_detail", tout << "assert_new_instances, inconsistent: " << m_context->inconsistent() << "\n";);
|
||||
ptr_buffer<enode> bindings;
|
||||
ptr_vector<enode> dummy;
|
||||
vector<std::tuple<enode *, enode *>> dummy;
|
||||
for (instance* inst : m_new_instances) {
|
||||
quantifier * q = inst->m_q;
|
||||
if (m_context->b_internalized(q)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue