summaryrefslogtreecommitdiff
path: root/src/api/cvc4cppkind.h
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2020-05-21 23:40:44 -0500
committerGitHub <noreply@github.com>2020-05-21 23:40:44 -0500
commit026f7ae7bb3678281fb46defff4a1202c69d5f4e (patch)
tree46789ea4793e51f8f7154a7422c44d8d74457c48 /src/api/cvc4cppkind.h
parent0f9b0dd69bef6a108b1ccc185223733f1d8fa40d (diff)
Update string kind names in new API (#4509)
To match the smt2 Unicode standard. The internal ones are left unchanged for now.
Diffstat (limited to 'src/api/cvc4cppkind.h')
-rw-r--r--src/api/cvc4cppkind.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/api/cvc4cppkind.h b/src/api/cvc4cppkind.h
index 05423a952..e084daf1e 100644
--- a/src/api/cvc4cppkind.h
+++ b/src/api/cvc4cppkind.h
@@ -1961,7 +1961,7 @@ enum CVC4_PUBLIC Kind : int32_t
* mkTerm(Kind kind, Term child1, Term child2)
* mkTerm(Kind kind, const std::vector<Term>& children)
*/
- STRING_STRCTN,
+ STRING_CONTAINS,
/**
* String index-of.
* Returns the index of a substring s2 in a string s1 starting at index i. If
@@ -1975,7 +1975,7 @@ enum CVC4_PUBLIC Kind : int32_t
* mkTerm(Kind kind, Term child1, Term child2, Term child3)
* mkTerm(Kind kind, const std::vector<Term>& children)
*/
- STRING_STRIDOF,
+ STRING_INDEXOF,
/**
* String replace.
* Replaces a string s2 in a string s1 with string s3. If s2 does not appear
@@ -1988,7 +1988,7 @@ enum CVC4_PUBLIC Kind : int32_t
* mkTerm(Kind kind, Term child1, Term child2, Term child3)
* mkTerm(Kind kind, const std::vector<Term>& children)
*/
- STRING_STRREPL,
+ STRING_REPLACE,
/**
* String replace all.
* Replaces all occurrences of a string s2 in a string s1 with string s3.
@@ -2001,7 +2001,7 @@ enum CVC4_PUBLIC Kind : int32_t
* mkTerm(Kind kind, Term child1, Term child2, Term child3)
* mkTerm(Kind kind, const std::vector<Term>& children)
*/
- STRING_STRREPLALL,
+ STRING_REPLACE_ALL,
/**
* String to lower case.
* Parameters: 1
@@ -2113,7 +2113,7 @@ enum CVC4_PUBLIC Kind : int32_t
* Create with:
* mkTerm(Kind kind, Term child)
*/
- STRING_ITOS,
+ STRING_FROM_INT,
/**
* String to integer (total function).
* If the string does not contain an integer or the integer is negative, the
@@ -2123,7 +2123,7 @@ enum CVC4_PUBLIC Kind : int32_t
* Create with:
* mkTerm(Kind kind, Term child)
*/
- STRING_STOI,
+ STRING_TO_INT,
/**
* Constant string.
* Parameters:
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback