mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 20:05:51 +00:00
drat
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
9cd339841a
commit
470bf27d1d
8 changed files with 128 additions and 73 deletions
|
@ -247,6 +247,14 @@ namespace array {
|
|||
return false;
|
||||
}
|
||||
|
||||
bool solver::is_beta_redex(euf::enode* p, euf::enode* n) const {
|
||||
if (a.is_select(p->get_expr()))
|
||||
return p->get_arg(0)->get_root() == n->get_root();
|
||||
if (a.is_map(p->get_expr()))
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
func_decl_ref_vector const& solver::sort2diff(sort* s) {
|
||||
func_decl_ref_vector* result = nullptr;
|
||||
if (m_sort2diff.find(s, result))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue