Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/main/scala/z3/scala/Z3Context.scala
Original file line number Diff line number Diff line change
Expand Up @@ -591,6 +591,10 @@ sealed class Z3Context(val config: Map[String, String]) {
new Z3AST(Native.mkSeqAt(this.ptr, seq.ptr, i.ptr), this)
}

def mkSeqNth(seq: Z3AST, n: Z3AST): Z3AST = {
new Z3AST(Native.mkSeqNth(this.ptr, seq.ptr, n.ptr), this)
}

def mkSeqExtract(seq: Z3AST, start: Z3AST, length: Z3AST): Z3AST = {
new Z3AST(Native.mkSeqExtract(this.ptr, seq.ptr, start.ptr, length.ptr), this)
}
Expand Down