summaryrefslogtreecommitdiff
path: root/src/theory/output_channel.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2021-02-01 14:55:19 -0600
committerGitHub <noreply@github.com>2021-02-01 14:55:19 -0600
commitc48548ea68b6241bee2cb9393ef2710c5803fb06 (patch)
tree044b335f3ea83baef89207c49c0cd5da227ecaa8 /src/theory/output_channel.cpp
parenteac7249ef4e35ad8c37f36098c228965f71a319b (diff)
Eliminate PREPROCESS lemma property (#5827)
This is now possible since we always preprocess lemmas. Note that the LemmaProperty on inferences may be redundant throughout the non-linear solver now.
Diffstat (limited to 'src/theory/output_channel.cpp')
-rw-r--r--src/theory/output_channel.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/theory/output_channel.cpp b/src/theory/output_channel.cpp
index e63b78486..e0bae8fae 100644
--- a/src/theory/output_channel.cpp
+++ b/src/theory/output_channel.cpp
@@ -41,10 +41,6 @@ bool isLemmaPropertyRemovable(LemmaProperty p)
{
return (p & LemmaProperty::REMOVABLE) != LemmaProperty::NONE;
}
-bool isLemmaPropertyPreprocess(LemmaProperty p)
-{
- return (p & LemmaProperty::PREPROCESS) != LemmaProperty::NONE;
-}
bool isLemmaPropertySendAtoms(LemmaProperty p)
{
return (p & LemmaProperty::SEND_ATOMS) != LemmaProperty::NONE;
@@ -67,10 +63,6 @@ std::ostream& operator<<(std::ostream& out, LemmaProperty p)
{
out << " REMOVABLE";
}
- if (isLemmaPropertyPreprocess(p))
- {
- out << " PREPROCESS";
- }
if (isLemmaPropertySendAtoms(p))
{
out << " SEND_ATOMS";
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback