summaryrefslogtreecommitdiff
path: root/src/theory/strings/regexp_operation.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2018-04-16 12:12:24 -0500
committerGitHub <noreply@github.com>2018-04-16 12:12:24 -0500
commit7b9b6b9cfbe813812b0de7ba20f2c1d8cc060e63 (patch)
treee7c93bcb8d0b04461f0ea42036d8d2f3f2912e5f /src/theory/strings/regexp_operation.cpp
parent353bccac179f9673583c3ce559c720751ae3fa96 (diff)
Make 256 the default cardinality for strings (#1783)
Diffstat (limited to 'src/theory/strings/regexp_operation.cpp')
-rw-r--r--src/theory/strings/regexp_operation.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/theory/strings/regexp_operation.cpp b/src/theory/strings/regexp_operation.cpp
index a8fd08792..f9db44102 100644
--- a/src/theory/strings/regexp_operation.cpp
+++ b/src/theory/strings/regexp_operation.cpp
@@ -24,7 +24,7 @@ namespace theory {
namespace strings {
RegExpOpr::RegExpOpr()
- : d_lastchar(options::stdASCII() ? '\x7f' : '\xff'),
+ : d_lastchar(options::stdPrintASCII() ? '\x7f' : '\xff'),
d_emptyString(NodeManager::currentNM()->mkConst(::CVC4::String(""))),
d_true(NodeManager::currentNM()->mkConst(true)),
d_false(NodeManager::currentNM()->mkConst(false)),
@@ -39,8 +39,9 @@ RegExpOpr::RegExpOpr()
d_char_end(),
d_sigma(NodeManager::currentNM()->mkNode(kind::REGEXP_SIGMA,
std::vector<Node>{})),
- d_sigma_star(
- NodeManager::currentNM()->mkNode(kind::REGEXP_STAR, d_sigma)) {}
+ d_sigma_star(NodeManager::currentNM()->mkNode(kind::REGEXP_STAR, d_sigma))
+{
+}
RegExpOpr::~RegExpOpr() {}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback