00001 00018 package com.microsoft.z3; 00019 00023 public class RealSort extends ArithSort 00024 { 00025 RealSort(Context ctx, long obj) throws Z3Exception 00026 { 00027 super(ctx, obj); 00028 } 00029 00030 RealSort(Context ctx) throws Z3Exception 00031 { 00032 super(ctx, Native.mkRealSort(ctx.nCtx())); 00033 } 00034 }