From b06a3d697c1dc57c58498c9e8612d4c21d6395d6 Mon Sep 17 00:00:00 2001 From: Morgan Deters Date: Wed, 26 Sep 2012 22:00:19 +0000 Subject: Finish off SEXPR kind work. (this commit was certified error- and warning-free by the test-and-commit script.) --- src/expr/command.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/expr/command.cpp') 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) { -- cgit v1.2.3