From dd963729849ca7f1001373c56e800bd62781fe98 Mon Sep 17 00:00:00 2001 From: ajreynol Date: Thu, 15 Sep 2016 10:43:28 -0500 Subject: Refactor setIncomplete in quantifiers. --- src/theory/quantifiers/quant_util.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/theory/quantifiers/quant_util.h') diff --git a/src/theory/quantifiers/quant_util.h b/src/theory/quantifiers/quant_util.h index d8e57b1ca..3ff21aa6e 100644 --- a/src/theory/quantifiers/quant_util.h +++ b/src/theory/quantifiers/quant_util.h @@ -51,8 +51,10 @@ public: virtual void reset_round( Theory::Effort e ){} /* Call during quantifier engine's check */ virtual void check( Theory::Effort e, unsigned quant_e ) = 0; - /* check was complete (e.g. no lemmas implies a model) */ + /* check was complete, return false if there is no way to answer "SAT", true if maybe can answer "SAT" */ virtual bool checkComplete() { return true; } + /* check was complete for quantified formula q (e.g. no lemmas implies a model) */ + virtual bool checkCompleteFor( Node q ) { return false; } /* Called for new quantified formulas */ virtual void preRegisterQuantifier( Node q ) { } /* Called for new quantifiers after owners are finalized */ -- cgit v1.2.3