Z3
FPRMSort.cs
Go to the documentation of this file.
1 /*++
2 Copyright (c) 2013 Microsoft Corporation
3 
4 Module Name:
5 
6  FPRMSort.cs
7 
8 Abstract:
9 
10  Z3 Managed API: Rounding Mode Sort
11 
12 Author:
13 
14  Christoph Wintersteiger (cwinter) 2013-06-10
15 
16 Notes:
17 
18 --*/
19 
20 using System;
21 using System.Diagnostics.Contracts;
22 
23 namespace Microsoft.Z3
24 {
28  public class FPRMSort : Sort
29  {
30  #region Internal
31  internal FPRMSort(Context ctx, IntPtr obj)
32  : base(ctx, obj)
33  {
34  Contract.Requires(ctx != null);
35  }
36  internal FPRMSort(Context ctx)
37  : base(ctx, Native.Z3_mk_fpa_rounding_mode_sort(ctx.nCtx))
38  {
39  Contract.Requires(ctx != null);
40  }
41  #endregion
42  }
43 }
using System
static Z3_sort Z3_mk_fpa_rounding_mode_sort(Z3_context a0)
Definition: Native.cs:6282
The FloatingPoint RoundingMode sort
Definition: FPRMSort.cs:28
The main interaction with Z3 happens via the Context.
Definition: Context.cs:31
The Sort class implements type information for ASTs.
Definition: Sort.cs:29