Z3
IntSort.cs
Go to the documentation of this file.
1/*++
2Copyright (c) 2012 Microsoft Corporation
3
4Module Name:
5
6 IntSort.cs
7
8Abstract:
9
10 Z3 Managed API: Int Sorts
11
12Author:
13
14 Christoph Wintersteiger (cwinter) 2012-11-23
15
16Notes:
17
18--*/
19
20using System.Diagnostics;
21using System;
22
23namespace Microsoft.Z3
24{
28 public class IntSort : ArithSort
29 {
30 #region Internal
31 internal IntSort(Context ctx, IntPtr obj)
32 : base(ctx, obj)
33 {
34 Debug.Assert(ctx != null);
35 }
36 internal IntSort(Context ctx)
37 : base(ctx, Native.Z3_mk_int_sort(ctx.nCtx))
38 {
39 Debug.Assert(ctx != null);
40 }
41 #endregion
42 }
43}
An arithmetic sort, i.e., Int or Real.
Definition: ArithSort.cs:29
The main interaction with Z3 happens via the Context.
Definition: Context.cs:32
An Integer sort
Definition: IntSort.cs:29