mirror of
https://github.com/Z3Prover/z3
synced 2025-05-08 16:25:48 +00:00
Improved quantifier instantiation logging
This commit is contained in:
parent
41e0a12678
commit
7585f28dec
10 changed files with 108 additions and 24 deletions
|
@ -21,6 +21,7 @@ Revision History:
|
|||
|
||||
#include "ast/ast.h"
|
||||
#include "smt/smt_types.h"
|
||||
#include <tuple>
|
||||
|
||||
namespace smt {
|
||||
/**
|
||||
|
@ -57,7 +58,7 @@ namespace smt {
|
|||
|
||||
virtual void display(std::ostream& out) = 0;
|
||||
|
||||
virtual void on_match(quantifier * q, app * pat, unsigned num_bindings, enode * const * bindings, unsigned max_generation, ptr_vector<enode> & used_enodes) = 0;
|
||||
virtual void on_match(quantifier * q, app * pat, unsigned num_bindings, enode * const * bindings, unsigned max_generation, vector<std::tuple<enode *, enode *>> & used_enodes) = 0;
|
||||
|
||||
virtual bool is_shared(enode * n) const = 0;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue