projects
/
cvc5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
02b3aba
)
Quote unsat core names if applicable, fixes bug 816.
author
ajreynol
<andrew.j.reynolds@gmail.com>
Thu, 25 May 2017 17:44:35 +0000
(12:44 -0500)
committer
ajreynol
<andrew.j.reynolds@gmail.com>
Thu, 25 May 2017 17:44:35 +0000
(12:44 -0500)
src/printer/smt2/smt2_printer.cpp
patch
|
blob
|
history
diff --git
a/src/printer/smt2/smt2_printer.cpp
b/src/printer/smt2/smt2_printer.cpp
index 247ef2431014e29cb9ac7aab4588af719d21fcbf..fd77535116a437f4889a6e99c301134b16bcb541 100644
(file)
--- a/
src/printer/smt2/smt2_printer.cpp
+++ b/
src/printer/smt2/smt2_printer.cpp
@@
-1067,7
+1067,7
@@
void Smt2Printer::toStream(std::ostream& out, const UnsatCore& core, const std::
if(j == names.end()) {
out << *i << endl;
} else {
- out <<
(*j).second
<< endl;
+ out <<
maybeQuoteSymbol((*j).second)
<< endl;
}
}
out << ")" << endl;