summaryrefslogtreecommitdiff
path: root/src/theory/theory_engine.h
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2011-04-18 16:48:52 +0000
committerTim King <taking@cs.nyu.edu>2011-04-18 16:48:52 +0000
commitabe849b486ea3707fd51a612c7982554f3d6581f (patch)
tree8f3967f644f9098079c778dd60cf9feb36e1ab2b /src/theory/theory_engine.h
parentb90081962840584bb9eeda368ea232a7d42a292b (diff)
This commit merges the branch arithmetic/propagation-again into trunk.
- This adds code for bounds refinement, and conflict weakening. - This adds util/boolean_simplification.h. - This adds a propagation manager to theory of arithmetic. - Propagation is disabled by default. - Propagation can be enabled by the command line flag "--enable-arithmetic-propagation" - Propagation interacts *heavily* with rewriting equalities, and will work best if the command line flag "--rewrite-arithmetic-equalities" is enabled.
Diffstat (limited to 'src/theory/theory_engine.h')
-rw-r--r--src/theory/theory_engine.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/theory/theory_engine.h b/src/theory/theory_engine.h
index 6226406d7..6973a7cad 100644
--- a/src/theory/theory_engine.h
+++ b/src/theory/theory_engine.h
@@ -103,6 +103,8 @@ class TheoryEngine {
void propagate(TNode lit, bool)
throw(theory::Interrupted, AssertionException) {
+ Debug("theory") << "EngineOutputChannel::propagate("
+ << lit << ")" << std::endl;
d_propagatedLiterals.push_back(lit);
++(d_engine->d_statistics.d_statPropagate);
}
@@ -117,6 +119,8 @@ class TheoryEngine {
void explanation(TNode explanationNode, bool)
throw(theory::Interrupted, AssertionException) {
+ Debug("theory") << "EngineOutputChannel::explanation("
+ << explanationNode << ")" << std::endl;
d_explanationNode = explanationNode;
++(d_engine->d_statistics.d_statExplanation);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback