summaryrefslogtreecommitdiff
path: root/src/parser
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2018-05-08 14:50:47 -0500
committerGitHub <noreply@github.com>2018-05-08 14:50:47 -0500
commitf5e3739358b98d9a6ebc16fbc5aed9edee1483dc (patch)
tree6659d344360af9964266614f33dd16f24ed39923 /src/parser
parent4f3416bf998cdf3fc8b6adf6debb7e65d663bd7c (diff)
Support for str.<= and str.< (#1882)
Diffstat (limited to 'src/parser')
-rw-r--r--src/parser/smt2/smt2.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/parser/smt2/smt2.cpp b/src/parser/smt2/smt2.cpp
index 09dccdfbd..133cc12c1 100644
--- a/src/parser/smt2/smt2.cpp
+++ b/src/parser/smt2/smt2.cpp
@@ -154,6 +154,8 @@ void Smt2::addStringOperators() {
addOperator(kind::REGEXP_RANGE, "re.range");
addOperator(kind::REGEXP_LOOP, "re.loop");
addOperator(kind::STRING_CODE, "str.code");
+ addOperator(kind::STRING_LT, "str.<");
+ addOperator(kind::STRING_LEQ, "str.<=");
}
void Smt2::addFloatingPointOperators() {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback