mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 11:55:51 +00:00
fix a bug in nla_expr
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
5d2ba2fce1
commit
1e625db84b
3 changed files with 15 additions and 8 deletions
|
@ -151,11 +151,7 @@ public:
|
|||
}
|
||||
}
|
||||
nla_expr(expr_type t): m_type(t) {}
|
||||
nla_expr() {
|
||||
#if Z3DEBUG
|
||||
m_type = expr_type::UNDEF;
|
||||
#endif
|
||||
}
|
||||
nla_expr(): m_type(expr_type::UNDEF) {}
|
||||
|
||||
void add_child(const nla_expr& e) {
|
||||
m_children.push_back(e);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue