summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers_engine.h
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2014-11-28 16:27:19 +0100
committerajreynol <andrew.j.reynolds@gmail.com>2014-11-28 16:27:27 +0100
commit68f22235a62f5276b206e9a6692a85001beb8d42 (patch)
treef9700ab9aaacf866121c7e4f947dffd20710f628 /src/theory/quantifiers_engine.h
parent388a6acf4acd50a7611faae91b3489ac2209e584 (diff)
Synchronize conjecture generation with E-matching. Minor fix to --full-saturate-quant.
Diffstat (limited to 'src/theory/quantifiers_engine.h')
-rw-r--r--src/theory/quantifiers_engine.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/theory/quantifiers_engine.h b/src/theory/quantifiers_engine.h
index 2b466b96b..ac782a536 100644
--- a/src/theory/quantifiers_engine.h
+++ b/src/theory/quantifiers_engine.h
@@ -169,6 +169,9 @@ private:
std::map< Node, int > d_total_inst_debug;
std::map< Node, int > d_temp_inst_debug;
int d_total_inst_count_debug;
+ /** inst round counters */
+ int d_ierCounter;
+ int d_ierCounter_lc;
private:
KEEP_STATISTIC(TimerStat, d_time, "theory::QuantifiersEngine::time");
public:
@@ -273,6 +276,8 @@ public:
bool hasAddedLemma() { return !d_lemmas_waiting.empty() || d_hasAddedLemma; }
/** get number of waiting lemmas */
int getNumLemmasWaiting() { return (int)d_lemmas_waiting.size(); }
+ /** get needs check */
+ bool getInstWhenNeedsCheck( Theory::Effort e );
/** set instantiation level attr */
static void setInstantiationLevelAttr( Node n, uint64_t level );
/** is term eligble for instantiation? */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback