summaryrefslogtreecommitdiff
path: root/src/api/python/cvc5.pxi
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/python/cvc5.pxi')
-rw-r--r--src/api/python/cvc5.pxi8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/api/python/cvc5.pxi b/src/api/python/cvc5.pxi
index 05138e9bc..9e1aeaca1 100644
--- a/src/api/python/cvc5.pxi
+++ b/src/api/python/cvc5.pxi
@@ -1130,22 +1130,22 @@ cdef class Solver:
term.cterm = self.csolver.mkReal("{}/{}".format(val, den).encode())
return term
- def mkRegexpEmpty(self):
+ def mkRegexpNone(self):
"""Create a regular expression empty term.
:return: the empty term
"""
cdef Term term = Term(self)
- term.cterm = self.csolver.mkRegexpEmpty()
+ term.cterm = self.csolver.mkRegexpNone()
return term
- def mkRegexpSigma(self):
+ def mkRegexpAllchar(self):
"""Create a regular expression sigma term.
:return: the sigma term
"""
cdef Term term = Term(self)
- term.cterm = self.csolver.mkRegexpSigma()
+ term.cterm = self.csolver.mkRegexpAllchar()
return term
def mkEmptySet(self, Sort s):
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback