mirror of
https://github.com/Z3Prover/z3
synced 2025-04-25 18:15:32 +00:00
43 lines
No EOL
754 B
C#
43 lines
No EOL
754 B
C#
/*++
|
|
Copyright (c) 2013 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
FPRMSort.cs
|
|
|
|
Abstract:
|
|
|
|
Z3 Managed API: Rounding Mode Sort
|
|
|
|
Author:
|
|
|
|
Christoph Wintersteiger (cwinter) 2013-06-10
|
|
|
|
Notes:
|
|
|
|
--*/
|
|
|
|
using System.Diagnostics;
|
|
using System;
|
|
|
|
namespace Microsoft.Z3
|
|
{
|
|
/// <summary>
|
|
/// The FloatingPoint RoundingMode sort
|
|
/// </summary>
|
|
public class FPRMSort : Sort
|
|
{
|
|
#region Internal
|
|
internal FPRMSort(Context ctx, IntPtr obj)
|
|
: base(ctx, obj)
|
|
{
|
|
Debug.Assert(ctx != null);
|
|
}
|
|
internal FPRMSort(Context ctx)
|
|
: base(ctx, Native.Z3_mk_fpa_rounding_mode_sort(ctx.nCtx))
|
|
{
|
|
Debug.Assert(ctx != null);
|
|
}
|
|
#endregion
|
|
}
|
|
} |