summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/quantifiers_inference_manager.h
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2021-02-08 16:50:16 -0600
committerGitHub <noreply@github.com>2021-02-08 16:50:16 -0600
commitc198f374972e62db0cebc93d3977fd1e414f431b (patch)
treef1180a7bda884d5c91a4bd64044ada8eadaaf333 /src/theory/quantifiers/quantifiers_inference_manager.h
parentca9705cf0785e3a81fc25995df0bc3dc76e3bd9f (diff)
Use quantifiers inference manager for lemma management (#5867)
Towards eliminating dependencies on quantifiers engine. This replaces the custom implementation of lemma management in quantifiers engine with the standard one. It makes a few minor changes to the standard inference manager classes to ensure the same behavior for quantifiers. Note that some minor changes in behavior are introduced in this PR, such as being more consistent about caching/rewriting lemmas. This should not have any major impact.
Diffstat (limited to 'src/theory/quantifiers/quantifiers_inference_manager.h')
-rw-r--r--src/theory/quantifiers/quantifiers_inference_manager.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/theory/quantifiers/quantifiers_inference_manager.h b/src/theory/quantifiers/quantifiers_inference_manager.h
index f89606d75..afdcfbdeb 100644
--- a/src/theory/quantifiers/quantifiers_inference_manager.h
+++ b/src/theory/quantifiers/quantifiers_inference_manager.h
@@ -34,6 +34,10 @@ class QuantifiersInferenceManager : public InferenceManagerBuffered
QuantifiersState& state,
ProofNodeManager* pnm);
~QuantifiersInferenceManager();
+ /**
+ * Do all pending lemmas, then do all pending phase requirements.
+ */
+ void doPending();
};
} // namespace quantifiers
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback