summaryrefslogtreecommitdiff
path: root/src/proof/proof_output_channel.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/proof/proof_output_channel.h')
-rw-r--r--src/proof/proof_output_channel.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/proof/proof_output_channel.h b/src/proof/proof_output_channel.h
index b85af5fb5..b44689fe5 100644
--- a/src/proof/proof_output_channel.h
+++ b/src/proof/proof_output_channel.h
@@ -24,13 +24,13 @@ public:
virtual ~ProofOutputChannel() throw() {}
- void conflict(TNode n, Proof* pf) throw();
- bool propagate(TNode x) throw();
- theory::LemmaStatus lemma(TNode n, ProofRule rule, bool, bool, bool) throw();
- theory::LemmaStatus splitLemma(TNode, bool) throw();
- void requirePhase(TNode n, bool b) throw();
- bool flipDecision() throw();
- void setIncomplete() throw();
+ virtual void conflict(TNode n, Proof* pf) throw();
+ virtual bool propagate(TNode x) throw();
+ virtual theory::LemmaStatus lemma(TNode n, ProofRule rule, bool, bool, bool);
+ virtual theory::LemmaStatus splitLemma(TNode, bool);
+ virtual void requirePhase(TNode n, bool b) throw();
+ virtual bool flipDecision() throw();
+ virtual void setIncomplete() throw();
};/* class ProofOutputChannel */
class MyPreRegisterVisitor {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback