Z3
UninterpretedSort.java
Go to the documentation of this file.
1 
18 package com.microsoft.z3;
19 
23 public 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 }
com.microsoft.z3.Native.mkUninterpretedSort
static long mkUninterpretedSort(long a0, long a1)
Definition: Native.java:945
com.microsoft.z3.Sort
Definition: Sort.java:26
com.microsoft.z3.UninterpretedSort
Definition: UninterpretedSort.java:23
com.microsoft.z3.Symbol
Definition: Symbol.java:25
com.microsoft.z3.Context.nCtx
long nCtx()
Definition: Context.java:3966
com.microsoft.z3.Native
Definition: Native.java:4
com.microsoft.z3.Context
Definition: Context.java:35