projects
/
cvc5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
efedf8e
)
Fix dumping of array-select expressions in CVC native language.
author
Morgan Deters
<mdeters@gmail.com>
Fri, 16 Nov 2012 19:05:36 +0000
(19:05 +0000)
committer
Morgan Deters
<mdeters@gmail.com>
Fri, 16 Nov 2012 19:05:36 +0000
(19:05 +0000)
Thanks to Wei for the bug report.
src/printer/cvc/cvc_printer.cpp
patch
|
blob
|
history
diff --git
a/src/printer/cvc/cvc_printer.cpp
b/src/printer/cvc/cvc_printer.cpp
index 14347ff8e72bfd96ef278a308b94914c06083685..8476b6239bf311abdf36dc227ed73a9ef9441751 100644
(file)
--- a/
src/printer/cvc/cvc_printer.cpp
+++ b/
src/printer/cvc/cvc_printer.cpp
@@
-331,7
+331,7
@@
void CvcPrinter::toStream(std::ostream& out, TNode n, int depth, bool types, boo
return;
break;
case kind::SELECT:
- toStream(out, n[0], depth, types,
fals
e);
+ toStream(out, n[0], depth, types,
tru
e);
out << '[';
toStream(out, n[1], depth, types, false);
out << ']';