summaryrefslogtreecommitdiff
path: root/src/theory/output_channel.h
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2012-08-16 21:30:41 +0000
committerMorgan Deters <mdeters@gmail.com>2012-08-16 21:30:41 +0000
commitdd30200795d4b37398c29f0d20998c9bd63a7fe7 (patch)
tree494e235520553c0f20654bb991e8359e6b0f1b9e /src/theory/output_channel.h
parentd260caa58d462f7e1eb0d94f73789f844f5f5596 (diff)
Replace propagateAsDecision() with Theory::getNextDecisionRequest():
* arrays now uses the new approach by using a CDQueue<> * uf strong solver has had the feature disabled, pending a merge from Andy * theory kinds files now have a getNextDecisionRequest property (if you want to take part in such decision requests you have to list that property) * the staticLearning property has been renamed ppStaticLearn to match the function name * theory kinds files are now checked again for correctly-declared properties (this had been disabled) * minor documentation and other fixups
Diffstat (limited to 'src/theory/output_channel.h')
-rw-r--r--src/theory/output_channel.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/theory/output_channel.h b/src/theory/output_channel.h
index b1a5fc60c..a86984cca 100644
--- a/src/theory/output_channel.h
+++ b/src/theory/output_channel.h
@@ -108,24 +108,6 @@ public:
virtual bool propagate(TNode n) throw(AssertionException) = 0;
/**
- * Request that the core make a decision on this atom. The decision
- * will be "as soon as possible," but due to other propagation and
- * conflict-detection work going on internally, the request is queued
- * up and may be behind other such requests. The request will be
- * silently dropped if the atom has a definite value at the point the
- * request would be serviced. This request is also context-dependent
- * on the search context, meaning that it will be dropped completely
- * if a conflict is found before it is serviced. Each request will only
- * be serviced a single time, even though the atom may become undefined
- * due to backtracking.
- *
- * @param atom the atom to decide upon (or the negation of an
- * atom---the decision will be in the phase provided); must be
- * associated to a SAT literal.
- */
- virtual void propagateAsDecision(TNode n) throw(AssertionException) = 0;
-
- /**
* Tell the core that a valid theory lemma at decision level 0 has
* been detected. (This requests a split.)
*
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback