mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 19:35:50 +00:00
fixed bug detected in regression tests
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
c5b91aef68
commit
73a13f209b
2 changed files with 8 additions and 1 deletions
|
@ -1777,7 +1777,7 @@ public:
|
|||
// -----------------------------------
|
||||
public:
|
||||
expr_dependency * mk_empty_dependencies() { return m_expr_dependency_manager.mk_empty(); }
|
||||
expr_dependency * mk_leaf(expr * t) { return m_expr_dependency_manager.mk_leaf(t); }
|
||||
expr_dependency * mk_leaf(expr * t);
|
||||
expr_dependency * mk_join(unsigned n, expr * const * ts);
|
||||
expr_dependency * mk_join(expr_dependency * d1, expr_dependency * d2) { return m_expr_dependency_manager.mk_join(d1, d2); }
|
||||
void inc_ref(expr_dependency * d) { if (d) m_expr_dependency_manager.inc_ref(d); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue