mirror of
https://github.com/Z3Prover/z3
synced 2025-08-11 13:40:52 +00:00
working on tab Horn solver
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
79dafcea81
commit
8daf100c65
5 changed files with 214 additions and 26 deletions
|
@ -49,6 +49,10 @@ bool matcher::operator()(expr * e1, expr * e2, substitution & s) {
|
|||
|
||||
if (is_var(p.second))
|
||||
return false;
|
||||
if (!is_app(p.first))
|
||||
return false;
|
||||
if (!is_app(p.second))
|
||||
return false;
|
||||
|
||||
app * n1 = to_app(p.first);
|
||||
app * n2 = to_app(p.second);
|
||||
|
|
|
@ -32,7 +32,7 @@ class matcher {
|
|||
|
||||
ast_manager & m_manager;
|
||||
substitution * m_subst;
|
||||
cache m_cache;
|
||||
// cache m_cache;
|
||||
svector<expr_pair> m_todo;
|
||||
|
||||
void reset();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue