summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/anti_skolem.h
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2016-11-04 16:28:20 -0500
committerajreynol <andrew.j.reynolds@gmail.com>2016-11-04 16:28:20 -0500
commit60cd271c46e7b250e3799f1c3b1fc20015723999 (patch)
tree82419517f1730d91ab0d5f5fa614fd4a282a8910 /src/theory/quantifiers/anti_skolem.h
parent35f213b0da145bbfc58b117e0b34a819f2bff4a4 (diff)
Fix a few more minor memory leaks.
Diffstat (limited to 'src/theory/quantifiers/anti_skolem.h')
-rw-r--r--src/theory/quantifiers/anti_skolem.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/theory/quantifiers/anti_skolem.h b/src/theory/quantifiers/anti_skolem.h
index 48205db9d..c996b171e 100644
--- a/src/theory/quantifiers/anti_skolem.h
+++ b/src/theory/quantifiers/anti_skolem.h
@@ -9,7 +9,7 @@
** All rights reserved. See the file COPYING in the top-level source
** directory for licensing information.\endverbatim
**
- ** \brief dynamic quantifiers splitting
+ ** \brief anti-skolemization
**/
#include "cvc4_private.h"
@@ -71,6 +71,7 @@ public:
class CDSkQuantCache {
public:
CDSkQuantCache( context::Context* c ) : d_valid( c, false ){}
+ ~CDSkQuantCache();
std::map< Node, CDSkQuantCache* > d_data;
context::CDO< bool > d_valid;
bool add( context::Context* c, std::vector< Node >& quants, unsigned index = 0 );
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback