mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
free memory in egraph
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
a003af494b
commit
bee3077640
2 changed files with 3 additions and 3 deletions
|
@ -130,9 +130,9 @@ namespace euf {
|
|||
return n;
|
||||
}
|
||||
|
||||
void egraph::~egraph() {
|
||||
egraph::~egraph() {
|
||||
for (enode* n : m_nodes)
|
||||
n->~enode();
|
||||
n->m_parents.finalize();
|
||||
}
|
||||
|
||||
void egraph::pop(unsigned num_scopes) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue