Open RIvance opened 2 months ago
Add a missing commonly used Seq operation.
(seq.nth s offset)
def mkSeqNth(seq: Z3AST, n: Z3AST): Z3AST = { new Z3AST(Native.mkSeqNth(this.ptr, seq.ptr, n.ptr), this) }
reference: https://microsoft.github.io/z3guide/docs/theories/Sequences/
Add a missing commonly used Seq operation.
(seq.nth s offset)
reference: https://microsoft.github.io/z3guide/docs/theories/Sequences/