summaryrefslogtreecommitdiff
path: root/src/theory/strings/kinds
diff options
context:
space:
mode:
authorTianyi Liang <tianyi-liang@uiowa.edu>2014-01-16 15:37:58 -0600
committerTianyi Liang <tianyi-liang@uiowa.edu>2014-01-16 15:37:58 -0600
commit650bb8fecf03c2af1da83177c3ad3f6c1b532294 (patch)
treef94917dd435a37830922a2348ad28373811fead8 /src/theory/strings/kinds
parent0619ddd0da84b91218dbef492e1abb09a4558c3f (diff)
adds partial functions
Diffstat (limited to 'src/theory/strings/kinds')
-rw-r--r--src/theory/strings/kinds10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/theory/strings/kinds b/src/theory/strings/kinds
index 9e0897c00..b30bf8f36 100644
--- a/src/theory/strings/kinds
+++ b/src/theory/strings/kinds
@@ -13,9 +13,11 @@ typechecker "theory/strings/theory_strings_type_rules.h"
operator STRING_CONCAT 2: "string concat"
operator STRING_IN_REGEXP 2 "membership"
operator STRING_LENGTH 1 "string length"
-operator STRING_SUBSTR 3 "string substr"
+operator STRING_SUBSTR 3 "string substr (user symbol)"
+operator STRING_SUBSTR_TOTAL 3 "string substr (internal symbol)"
+operator STRING_CHARAT 2 "string charat (user symbol)"
+operator STRING_CHARAT_TOTAL 2 "string charat (internal symbol)"
operator STRING_STRCTN 2 "string contains"
-operator STRING_CHARAT 2 "string charat"
operator STRING_STRIDOF 3 "string indexof"
operator STRING_STRREPL 3 "string replace"
@@ -105,8 +107,10 @@ typerule STRING_TO_REGEXP ::CVC4::theory::strings::StringToRegExpTypeRule
typerule STRING_CONCAT ::CVC4::theory::strings::StringConcatTypeRule
typerule STRING_LENGTH ::CVC4::theory::strings::StringLengthTypeRule
typerule STRING_SUBSTR ::CVC4::theory::strings::StringSubstrTypeRule
-typerule STRING_STRCTN ::CVC4::theory::strings::StringContainTypeRule
+typerule STRING_SUBSTR_TOTAL ::CVC4::theory::strings::StringSubstrTypeRule
typerule STRING_CHARAT ::CVC4::theory::strings::StringCharAtTypeRule
+typerule STRING_CHARAT_TOTAL ::CVC4::theory::strings::StringCharAtTypeRule
+typerule STRING_STRCTN ::CVC4::theory::strings::StringContainTypeRule
typerule STRING_STRIDOF ::CVC4::theory::strings::StringIndexOfTypeRule
typerule STRING_STRREPL ::CVC4::theory::strings::StringReplaceTypeRule
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback