We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbb8531 commit a865074Copy full SHA for a865074
1 file changed
ksmt-cvc5/ksmt-cvc5-core/src/main/kotlin/io/ksmt/solver/cvc5/KCvc5ExprConverter.kt
@@ -820,6 +820,8 @@ open class KCvc5ExprConverter(
820
sort.isBitVector -> mkBvSort(sort.bitVectorSize.toUInt())
821
sort.isInteger -> intSort
822
sort.isReal -> realSort
823
+ sort.isString -> stringSort
824
+ sort.isRegExp -> regexSort
825
sort.isArray -> mkArrayAnySort(
826
domain = convertArrayDomainSort(tm.sortOp(sort) { arrayIndexSort }),
827
range = tm.sortOp(sort) { arrayElementSort }.convertSort()
0 commit comments