mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
... convenience parameters, etc. Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
45 lines
950 B
Java
45 lines
950 B
Java
/**
|
|
* This file was automatically generated from ArraySort.cs
|
|
* w/ further modifications by:
|
|
* @author Christoph M. Wintersteiger (cwinter)
|
|
**/
|
|
|
|
package com.microsoft.z3;
|
|
|
|
/**
|
|
* Array sorts.
|
|
**/
|
|
public class ArraySort extends Sort
|
|
{
|
|
/**
|
|
* The domain of the array sort.
|
|
* @throws Z3Exception
|
|
**/
|
|
public Sort getDomain() throws Z3Exception
|
|
{
|
|
return Sort.create(getContext(),
|
|
Native.getArraySortDomain(getContext().nCtx(), getNativeObject()));
|
|
}
|
|
|
|
/**
|
|
* The range of the array sort.
|
|
* @throws Z3Exception
|
|
**/
|
|
public Sort getRange() throws Z3Exception
|
|
{
|
|
return Sort.create(getContext(),
|
|
Native.getArraySortRange(getContext().nCtx(), getNativeObject()));
|
|
}
|
|
|
|
ArraySort(Context ctx, long obj) throws Z3Exception
|
|
{
|
|
super(ctx, obj);
|
|
}
|
|
|
|
ArraySort(Context ctx, Sort domain, Sort range) throws Z3Exception
|
|
{
|
|
super(ctx, Native.mkArraySort(ctx.nCtx(), domain.getNativeObject(),
|
|
range.getNativeObject()));
|
|
}
|
|
};
|