summaryrefslogtreecommitdiff
path: root/src/theory/strings/infer_info.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/strings/infer_info.cpp')
-rw-r--r--src/theory/strings/infer_info.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/theory/strings/infer_info.cpp b/src/theory/strings/infer_info.cpp
index e1cdc5ec3..15d8bbde7 100644
--- a/src/theory/strings/infer_info.cpp
+++ b/src/theory/strings/infer_info.cpp
@@ -131,10 +131,10 @@ bool InferInfo::isFact() const
return !atom.isConst() && atom.getKind() != kind::OR && d_noExplain.empty();
}
-Node InferInfo::getAntecedent() const
+Node InferInfo::getPremises() const
{
// d_noExplain is a subset of d_ant
- return utils::mkAnd(d_ant);
+ return utils::mkAnd(d_premises);
}
std::ostream& operator<<(std::ostream& out, const InferInfo& ii)
@@ -144,9 +144,9 @@ std::ostream& operator<<(std::ostream& out, const InferInfo& ii)
{
out << " :rev";
}
- if (!ii.d_ant.empty())
+ if (!ii.d_premises.empty())
{
- out << " :ant (" << ii.d_ant << ")";
+ out << " :ant (" << ii.d_premises << ")";
}
if (!ii.d_noExplain.empty())
{
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback