summaryrefslogtreecommitdiff
path: root/src/expr/symbol_manager.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2020-11-19 06:42:04 -0600
committerGitHub <noreply@github.com>2020-11-19 06:42:04 -0600
commitb0130a1e032c201fab3c4b19f25871428b761967 (patch)
treef18039906a287a4d55345b1c4bd0ac86cf5232c5 /src/expr/symbol_manager.cpp
parent2901ee18f824d1f9e4338ef2853da0ab4ccbff0e (diff)
Use symbol manager for unsat cores (#5468)
This PR uses the symbol manager for handling names for unsat cores. This replaces interfaces in SmtEngine for managing expression names. It removes the SetExpressionName command.
Diffstat (limited to 'src/expr/symbol_manager.cpp')
-rw-r--r--src/expr/symbol_manager.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/expr/symbol_manager.cpp b/src/expr/symbol_manager.cpp
index 75ffa4f62..a163e503d 100644
--- a/src/expr/symbol_manager.cpp
+++ b/src/expr/symbol_manager.cpp
@@ -77,18 +77,20 @@ bool SymbolManager::Implementation::setExpressionName(api::Term t,
const std::string& name,
bool isAssertion)
{
+ Trace("sym-manager") << "set expression name: " << t << " -> " << name
+ << ", isAssertion=" << isAssertion << std::endl;
// cannot name subexpressions under quantifiers
PrettyCheckArgument(
!d_hasPushedScope.get(), name, "cannot name function in a scope");
+ if (isAssertion)
+ {
+ d_namedAsserts.insert(t);
+ }
if (d_names.find(t) != d_names.end())
{
// already named assertion
return false;
}
- if (isAssertion)
- {
- d_namedAsserts.insert(t);
- }
d_names[t] = name;
return true;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback