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