mirror of
https://github.com/Z3Prover/z3
synced 2025-04-27 02:45:51 +00:00
34 lines
461 B
Java
34 lines
461 B
Java
/**
|
|
Copyright (c) 2012-2014 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
SetSort.java
|
|
|
|
Abstract:
|
|
|
|
Author:
|
|
|
|
@author Christoph Wintersteiger (cwinter) 2012-03-15
|
|
|
|
Notes:
|
|
|
|
**/
|
|
|
|
package com.microsoft.z3;
|
|
|
|
/**
|
|
* Set sorts.
|
|
**/
|
|
public class SetSort extends Sort
|
|
{
|
|
SetSort(Context ctx, long obj)
|
|
{
|
|
super(ctx, obj);
|
|
}
|
|
|
|
SetSort(Context ctx, Sort ty)
|
|
{
|
|
super(ctx, Native.mkSetSort(ctx.nCtx(), ty.getNativeObject()));
|
|
}
|
|
}
|