summaryrefslogtreecommitdiff
path: root/src/util/regexp.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2018-07-04 16:34:17 +0100
committerGitHub <noreply@github.com>2018-07-04 16:34:17 +0100
commit8494e02bf31a08a686e1cf990e512250a9210acc (patch)
treec94bd7a5658dfd978cafb13b2b3547e15d790c50 /src/util/regexp.cpp
parent3e9c44a361d287d30d4aa9771f77677a025a766e (diff)
More cleanup in strings (#2138)
Diffstat (limited to 'src/util/regexp.cpp')
-rw-r--r--src/util/regexp.cpp17
1 files changed, 5 insertions, 12 deletions
diff --git a/src/util/regexp.cpp b/src/util/regexp.cpp
index 8589c6993..93178b948 100644
--- a/src/util/regexp.cpp
+++ b/src/util/regexp.cpp
@@ -421,18 +421,11 @@ size_t String::maxSize()
{
return std::numeric_limits<size_t>::max();
}
-
-int String::toNumber() const {
- if (isNumber()) {
- int ret = 0;
- for (unsigned int i = 0; i < size(); ++i) {
- unsigned char c = convertUnsignedIntToChar(d_str[i]);
- ret = ret * 10 + (int)c - (int)'0';
- }
- return ret;
- } else {
- return -1;
- }
+Rational String::toNumber() const
+{
+ // when smt2 standard for strings is set, this may change, based on the
+ // semantics of str.from.int for leading zeros
+ return Rational(toString());
}
unsigned char String::hexToDec(unsigned char c) {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback