summaryrefslogtreecommitdiff
path: root/src/theory/theory_inference_manager.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2020-08-26 22:50:06 -0500
committerGitHub <noreply@github.com>2020-08-26 22:50:06 -0500
commit34953e8f4d9928cd8a92177f104b87e56479b437 (patch)
tree2792084fca0eb1b56dd1e2088076b9f15e492255 /src/theory/theory_inference_manager.cpp
parent00c9ae6e2796c45d821ea9dd45ff7c33a5770922 (diff)
Add the theory inference manager (#4948)
This class is a wrapper around OutputChannel and EqualityEngine. It is preferred that the Theory use this interface when asserting "internal facts" to the equality engine, and for sending lemmas, conflicts and propagations on the output channel. This class will be useful when trying new methods for theory combination, where all theories behavior can be modified in a standard way based on modifications to the base inference manager class.
Diffstat (limited to 'src/theory/theory_inference_manager.cpp')
-rw-r--r--src/theory/theory_inference_manager.cpp147
1 files changed, 147 insertions, 0 deletions
diff --git a/src/theory/theory_inference_manager.cpp b/src/theory/theory_inference_manager.cpp
new file mode 100644
index 000000000..54f33f6e7
--- /dev/null
+++ b/src/theory/theory_inference_manager.cpp
@@ -0,0 +1,147 @@
+/********************* */
+/*! \file theory_inference_manager.cpp
+ ** \verbatim
+ ** Top contributors (to current version):
+ ** Andrew Reynolds
+ ** This file is part of the CVC4 project.
+ ** Copyright (c) 2009-2020 by the authors listed in the file AUTHORS
+ ** in the top-level source directory) and their institutional affiliations.
+ ** All rights reserved. See the file COPYING in the top-level source
+ ** directory for licensing information.\endverbatim
+ **
+ ** \brief An inference manager for Theory
+ **/
+
+#include "theory/theory_inference_manager.h"
+
+#include "theory/theory.h"
+#include "theory/uf/equality_engine.h"
+
+using namespace CVC4::kind;
+
+namespace CVC4 {
+namespace theory {
+
+TheoryInferenceManager::TheoryInferenceManager(Theory& t,
+ TheoryState& state,
+ ProofNodeManager* pnm)
+ : d_theory(t),
+ d_theoryState(state),
+ d_out(t.getOutputChannel()),
+ d_ee(nullptr),
+ d_pnm(pnm),
+ d_keep(t.getSatContext())
+{
+}
+
+void TheoryInferenceManager::setEqualityEngine(eq::EqualityEngine* ee)
+{
+ d_ee = ee;
+}
+
+void TheoryInferenceManager::conflictEqConstantMerge(TNode a, TNode b)
+{
+ if (!d_theoryState.isInConflict())
+ {
+ TrustNode tconf = explainConflictEqConstantMerge(a, b);
+ d_theoryState.notifyInConflict();
+ d_out.trustedConflict(tconf);
+ }
+}
+
+void TheoryInferenceManager::conflict(TNode conf)
+{
+ if (!d_theoryState.isInConflict())
+ {
+ d_theoryState.notifyInConflict();
+ d_out.conflict(conf);
+ }
+}
+
+void TheoryInferenceManager::trustedConflict(TrustNode tconf)
+{
+ if (!d_theoryState.isInConflict())
+ {
+ d_theoryState.notifyInConflict();
+ d_out.trustedConflict(tconf);
+ }
+}
+
+bool TheoryInferenceManager::propagateLit(TNode lit)
+{
+ // If already in conflict, no more propagation
+ if (d_theoryState.isInConflict())
+ {
+ return false;
+ }
+ // Propagate out
+ bool ok = d_out.propagate(lit);
+ if (!ok)
+ {
+ d_theoryState.notifyInConflict();
+ }
+ return ok;
+}
+
+TrustNode TheoryInferenceManager::explainLit(TNode lit)
+{
+ // TODO (project #37): use proof equality engine if it exists
+ if (d_ee != nullptr)
+ {
+ Node exp = d_ee->mkExplainLit(lit);
+ return TrustNode::mkTrustPropExp(lit, exp, nullptr);
+ }
+ Unimplemented() << "Inference manager for " << d_theory.getId()
+ << " was asked to explain a propagation but doesn't have an "
+ "equality engine or implement the "
+ "TheoryInferenceManager::explainLit interface!";
+}
+
+TrustNode TheoryInferenceManager::explainConflictEqConstantMerge(TNode a,
+ TNode b)
+{
+ // TODO (project #37): use proof equality engine if it exists
+ if (d_ee != nullptr)
+ {
+ Node lit = a.eqNode(b);
+ Node conf = d_ee->mkExplainLit(lit);
+ return TrustNode::mkTrustConflict(conf, nullptr);
+ }
+ Unimplemented() << "Inference manager for " << d_theory.getId()
+ << " mkTrustedConflictEqConstantMerge";
+}
+
+void TheoryInferenceManager::assertInternalFact(TNode atom,
+ bool pol,
+ TNode fact)
+{
+ // call the pre-notify fact method with preReg = false, isInternal = true
+ if (d_theory.preNotifyFact(atom, pol, fact, false, true))
+ {
+ // handled in a theory-specific way that doesn't require equality engine
+ return;
+ }
+ Assert(d_ee != nullptr);
+ Trace("infer-manager") << "TheoryInferenceManager::assertInternalFact: "
+ << fact << std::endl;
+ if (atom.getKind() == kind::EQUAL)
+ {
+ d_ee->assertEquality(atom, pol, fact);
+ }
+ else
+ {
+ d_ee->assertPredicate(atom, pol, fact);
+ }
+ // call the notify fact method with isInternal = true
+ d_theory.notifyFact(atom, pol, fact, true);
+ Trace("infer-manager")
+ << "TheoryInferenceManager::finished assertInternalFact" << std::endl;
+ // Must reference count the equality and its explanation, which is not done
+ // by the equality engine. Notice that we do *not* need to do this for
+ // external assertions, which enter as facts in theory check.
+ d_keep.insert(atom);
+ d_keep.insert(fact);
+}
+
+} // namespace theory
+} // namespace CVC4
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback