summaryrefslogtreecommitdiff
path: root/src/proof/proof_output_channel.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2020-07-28 11:03:33 -0500
committerGitHub <noreply@github.com>2020-07-28 11:03:33 -0500
commitc38f35164adc5ab255803765a568ef820fa8f3b2 (patch)
tree6cbd4b21e8e9ff364b5b2f14467cd986ea69acf2 /src/proof/proof_output_channel.cpp
parentb90cfb462bde3e75c07bb14e2393ee8e4b4f4d42 (diff)
Use lemma property enum for OutputChannel::lemma (#4755)
There are 3 Boolean flags for OutputChannel::lemma, and plans to add another for relevance. This makes them into a enum.
Diffstat (limited to 'src/proof/proof_output_channel.cpp')
-rw-r--r--src/proof/proof_output_channel.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/proof/proof_output_channel.cpp b/src/proof/proof_output_channel.cpp
index 1e6e759e3..88467aea6 100644
--- a/src/proof/proof_output_channel.cpp
+++ b/src/proof/proof_output_channel.cpp
@@ -48,8 +48,10 @@ bool ProofOutputChannel::propagate(TNode x) {
return true;
}
-theory::LemmaStatus ProofOutputChannel::lemma(TNode n, ProofRule rule, bool,
- bool, bool) {
+theory::LemmaStatus ProofOutputChannel::lemma(TNode n,
+ ProofRule rule,
+ theory::LemmaProperty p)
+{
Trace("pf::tp") << "ProofOutputChannel: new lemma: " << n << std::endl;
// TODO(#1231): We should transition to supporting multiple lemmas. The
// following assertion cannot be enabled due to
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback