Z3
SetSort.java
Go to the documentation of this file.
1
18package com.microsoft.z3;
19
23public class SetSort extends Sort
24{
25 SetSort(Context ctx, long obj)
26 {
27 super(ctx, obj);
28 }
29
30 SetSort(Context ctx, Sort ty)
31 {
32 super(ctx, Native.mkSetSort(ctx.nCtx(), ty.getNativeObject()));
33 }
34}
static long mkSetSort(long a0, long a1)
Definition: Native.java:1919