Skip to content

Commit ac802c3

Browse files
committed
Replace z3 jar files with KSMT dependency
1 parent 1ac1f84 commit ac802c3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

utbot-framework-test/src/test/kotlin/org/utbot/framework/z3/extension/Z3ExtensionForTests.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ infix fun ArithExpr<*>.gt(other: Int): BoolExpr = context.mkGt(this, context.mkI
3232

3333
infix fun ArithExpr<*>.`=`(other: Int): BoolExpr = context.mkEq(this, context.mkInt(other))
3434

35-
operator fun ArrayExpr<*, *>.get(index: IntExpr): Expr<*> = context.mkSelect(this, index.cast())
36-
operator fun ArrayExpr<*, *>.get(index: Int): Expr<*> = this[context.mkInt(index)]
35+
operator fun ArrayExpr<*, *>.get(index: IntExpr): Expr<*> = context.mkSelect(this, index.cast())
36+
operator fun ArrayExpr<*, *>.get(index: Int): Expr<*> = this[context.mkInt(index)]
3737
fun ArrayExpr<*, *>.set(index: IntExpr, value: Expr<*>): ArrayExpr<*, *> = context.mkStore(this, index.cast(), value.cast())
3838
fun ArrayExpr<*, *>.set(index: Int, value: Expr<*>): ArrayExpr<*, *> = set(context.mkInt(index), value)
3939

0 commit comments

Comments
 (0)