summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/conjecture_generator.h
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2014-09-24 16:42:31 +0200
committerajreynol <andrew.j.reynolds@gmail.com>2014-09-24 16:42:31 +0200
commitd38d41b3f3604fc728ec71499d1f3af3dfb46ccd (patch)
tree009798015a508c4f257c599d3aca810ea2540bf4 /src/theory/quantifiers/conjecture_generator.h
parent4d7329f72720e884a6161dcdeb8d377d19031930 (diff)
Fix infinite loop in datatypes enumerator. Minor work on conjecture generator.
Diffstat (limited to 'src/theory/quantifiers/conjecture_generator.h')
-rwxr-xr-xsrc/theory/quantifiers/conjecture_generator.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/theory/quantifiers/conjecture_generator.h b/src/theory/quantifiers/conjecture_generator.h
index b0f25bd64..eb7f4b2aa 100755
--- a/src/theory/quantifiers/conjecture_generator.h
+++ b/src/theory/quantifiers/conjecture_generator.h
@@ -20,6 +20,7 @@
#include "context/cdhashmap.h"
#include "context/cdchunk_list.h"
#include "theory/quantifiers_engine.h"
+#include "theory/type_enumerator.h"
namespace CVC4 {
namespace theory {
@@ -355,6 +356,14 @@ public: //for generalization
bool isGeneralization( TNode patg, TNode pat, std::map< TNode, TNode >& subs );
// get generalization depth
int calculateGeneralizationDepth( TNode n, std::vector< TNode >& fv );
+private:
+ //ground term enumeration
+ std::map< TypeNode, std::vector< Node > > d_enum_terms;
+ //type enumerators
+ std::map< TypeNode, unsigned > d_typ_enum_map;
+ std::vector< TypeEnumerator > d_typ_enum;
+ //get nth term for type
+ Node getEnumerateTerm( TypeNode tn, unsigned index );
public: //for property enumeration
//process this candidate conjecture
void processCandidateConjecture( TNode lhs, TNode rhs, unsigned lhs_depth, unsigned rhs_depth );
@@ -404,7 +413,6 @@ public:
void assertNode( Node n );
/** Identify this module (for debugging, dynamic configuration, etc..) */
std::string identify() const { return "ConjectureGenerator"; }
-
//options
private:
bool optReqDistinctVarPatterns();
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback