mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 11:25:51 +00:00
adding access to characters over API
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
3a402ca2c1
commit
7ae78da850
8 changed files with 128 additions and 26 deletions
33
src/api/java/CharSort.java
Normal file
33
src/api/java/CharSort.java
Normal file
|
@ -0,0 +1,33 @@
|
|||
/**
|
||||
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())); { }}
|
||||
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue