mirror of
https://github.com/Z3Prover/z3
synced 2025-04-07 18:05:21 +00:00
34 lines
431 B
Java
34 lines
431 B
Java
/**
|
|
Copyright (c) 2012-2014 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
CharSort.java
|
|
|
|
Abstract:
|
|
|
|
Author:
|
|
|
|
@author Christoph Wintersteiger (cwinter) 2012-03-15
|
|
|
|
Notes:
|
|
|
|
**/
|
|
|
|
package com.microsoft.z3;
|
|
|
|
/**
|
|
* A Character sort
|
|
**/
|
|
public class CharSort extends Sort
|
|
{
|
|
CharSort(Context ctx, long obj)
|
|
{
|
|
super(ctx, obj);
|
|
}
|
|
|
|
CharSort(Context ctx) { super(ctx, Native.mkCharSort(ctx.nCtx())); { }}
|
|
|
|
}
|
|
|