Z3
CharSort.java
Go to the documentation of this file.
1
18package com.microsoft.z3;
19
23public class CharSort extends Sort
24{
25 CharSort(Context ctx, long obj)
26 {
27 super(ctx, obj);
28 }
29
30 CharSort(Context ctx) { super(ctx, Native.mkCharSort(ctx.nCtx())); { }}
31
32}
33