mirror of
https://github.com/Z3Prover/z3
synced 2025-04-27 10:55:50 +00:00
34 lines
440 B
Java
34 lines
440 B
Java
/**
|
|
Copyright (c) 2012-2014 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
IntSort.java
|
|
|
|
Abstract:
|
|
|
|
Author:
|
|
|
|
@author Christoph Wintersteiger (cwinter) 2012-03-15
|
|
|
|
Notes:
|
|
|
|
**/
|
|
|
|
package com.microsoft.z3;
|
|
|
|
/**
|
|
* An Integer sort
|
|
**/
|
|
public class IntSort extends ArithSort
|
|
{
|
|
IntSort(Context ctx, long obj)
|
|
{
|
|
super(ctx, obj);
|
|
}
|
|
|
|
IntSort(Context ctx)
|
|
{
|
|
super(ctx, Native.mkIntSort(ctx.nCtx()));
|
|
}
|
|
}
|