mirror of
https://github.com/Z3Prover/z3
synced 2025-04-26 10:35:33 +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
|
@ -2219,6 +2219,13 @@ app * ast_manager::mk_distinct_expanded(unsigned num_args, expr * const * args)
|
|||
//
|
||||
// -----------------------------------
|
||||
|
||||
expr_dependency * ast_manager::mk_leaf(expr * t) {
|
||||
if (t == 0)
|
||||
return 0;
|
||||
else
|
||||
return m_expr_dependency_manager.mk_leaf(t);
|
||||
}
|
||||
|
||||
expr_dependency * ast_manager::mk_join(unsigned n, expr * const * ts) {
|
||||
expr_dependency * d = 0;
|
||||
for (unsigned i = 0; i < n; i++)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue