summaryrefslogtreecommitdiff
path: root/src/util/result.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2019-07-01 16:33:34 -0500
committerGitHub <noreply@github.com>2019-07-01 16:33:34 -0500
commitc3b5f9d57eaf17612170b7401465b75053b07985 (patch)
treeaeef3125d045a21bda899a7f2be22a1da50ebbc3 /src/util/result.cpp
parentc365521b91520cf05739c7df6f2ae99f273c98d4 (diff)
Support sygus version 2 format (#3066)
Diffstat (limited to 'src/util/result.cpp')
-rw-r--r--src/util/result.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/util/result.cpp b/src/util/result.cpp
index e76f428a5..e6390cd41 100644
--- a/src/util/result.cpp
+++ b/src/util/result.cpp
@@ -350,8 +350,7 @@ void Result::toStreamTptp(std::ostream& out) const {
void Result::toStream(std::ostream& out, OutputLanguage language) const {
switch (language) {
case language::output::LANG_SYGUS:
- toStreamSmt2(out);
- break;
+ case language::output::LANG_SYGUS_V2: toStreamSmt2(out); break;
case language::output::LANG_TPTP:
toStreamTptp(out);
break;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback