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