mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 11:25:51 +00:00
34 lines
520 B
Java
34 lines
520 B
Java
/**
|
|
Copyright (c) 2012-2014 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
UninterpretedSort.java
|
|
|
|
Abstract:
|
|
|
|
Author:
|
|
|
|
@author Christoph Wintersteiger (cwinter) 2012-03-15
|
|
|
|
Notes:
|
|
|
|
**/
|
|
|
|
package com.microsoft.z3;
|
|
|
|
/**
|
|
* Uninterpreted Sorts
|
|
**/
|
|
public class UninterpretedSort extends Sort
|
|
{
|
|
UninterpretedSort(Context ctx, long obj)
|
|
{
|
|
super(ctx, obj);
|
|
}
|
|
|
|
UninterpretedSort(Context ctx, Symbol s)
|
|
{
|
|
super(ctx, Native.mkUninterpretedSort(ctx.nCtx(), s.getNativeObject()));
|
|
}
|
|
}
|