mirror of
https://github.com/Z3Prover/z3
synced 2025-04-10 19:27:06 +00:00
call dispose on sorts #5900
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
cb9dcb799f
commit
cd5e114ed3
|
@ -4927,6 +4927,10 @@ namespace Microsoft.Z3
|
|||
Fixedpoint_DRQ.Clear(this);
|
||||
Optimize_DRQ.Clear(this);
|
||||
|
||||
if (m_boolSort != null) m_boolSort.Dispose();
|
||||
if (m_intSort != null) m_intSort.Dispose();
|
||||
if (m_realSort != null) m_realSort.Dispose();
|
||||
if (m_stringSort != null) m_stringSort.Dispose();
|
||||
m_boolSort = null;
|
||||
m_intSort = null;
|
||||
m_realSort = null;
|
||||
|
|
Loading…
Reference in a new issue