projects
/
cvc5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7b36dc4
)
Fix printing of fp values. (#5041)
author
Mathias Preiner
<mathias.preiner@gmail.com>
Tue, 8 Sep 2020 18:51:23 +0000
(11:51 -0700)
committer
GitHub
<noreply@github.com>
Tue, 8 Sep 2020 18:51:23 +0000
(11:51 -0700)
Fixes #5032
src/util/floatingpoint.cpp
patch
|
blob
|
history
diff --git
a/src/util/floatingpoint.cpp
b/src/util/floatingpoint.cpp
index 7403c340b41e5af287b2cf75daff83d95d6b8c16..6c82d8210125084b7220631107ff227b6316de64 100644
(file)
--- a/
src/util/floatingpoint.cpp
+++ b/
src/util/floatingpoint.cpp
@@
-993,6
+993,7
@@
std::string FloatingPoint::toString(bool printAsIndexed) const
str.append(" ");
}
}
+ str.append(")");
return str;
}