summaryrefslogtreecommitdiff
path: root/src/expr/command.cpp
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2012-09-26 22:00:19 +0000
committerMorgan Deters <mdeters@gmail.com>2012-09-26 22:00:19 +0000
commitb06a3d697c1dc57c58498c9e8612d4c21d6395d6 (patch)
treefbdfd6de8a4534840c6fc2c3f9cfe76c999d18de /src/expr/command.cpp
parentc6d2a808e4981f81e4a638d25582e8542e89b716 (diff)
Finish off SEXPR kind work.
(this commit was certified error- and warning-free by the test-and-commit script.)
Diffstat (limited to 'src/expr/command.cpp')
-rw-r--r--src/expr/command.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/expr/command.cpp b/src/expr/command.cpp
index 99662cb99..938f28635 100644
--- a/src/expr/command.cpp
+++ b/src/expr/command.cpp
@@ -790,9 +790,9 @@ void GetValueCommand::invoke(SmtEngine* smtEngine) throw() {
smt::SmtScope scope(smtEngine);
Node request = Node::fromExpr(options::expandDefinitions() ? smtEngine->expandDefinitions(*i) : *i);
Node value = Node::fromExpr(smtEngine->getValue(*i));
- result.push_back(nm->mkNode(kind::TUPLE, request, value));
+ result.push_back(nm->mkNode(kind::SEXPR, request, value));
}
- Node n = nm->mkNode(kind::TUPLE, result);
+ Node n = nm->mkNode(kind::SEXPR, result);
d_result = nm->toExpr(n);
d_commandStatus = CommandSuccess::instance();
} catch(exception& e) {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback