Z3
UninterpretedSort.java
Go to the documentation of this file.
1
18package com.microsoft.z3;
19
23public class UninterpretedSort extends Sort
24{
25 UninterpretedSort(Context ctx, long obj)
26 {
27 super(ctx, obj);
28 }
29
31 {
32 super(ctx, Native.mkUninterpretedSort(ctx.nCtx(), s.getNativeObject()));
33 }
34}
UninterpretedSort mkUninterpretedSort(Symbol s)
Definition: Context.java:180