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