Z3
src/api/java/SetSort.java
Go to the documentation of this file.
00001 
00018 package com.microsoft.z3;
00019 
00023 public class SetSort extends Sort
00024 {
00025     SetSort(Context ctx, long obj) throws Z3Exception
00026     {
00027         super(ctx, obj);
00028     }
00029 
00030     SetSort(Context ctx, Sort ty) throws Z3Exception
00031     {
00032         super(ctx, Native.mkSetSort(ctx.nCtx(), ty.getNativeObject()));
00033     }
00034 }
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines