Z3
ArithSort.cs
Go to the documentation of this file.
1 /*++
2 Copyright (c) 2012 Microsoft Corporation
3 
4 Module Name:
5 
6  ArithSort.cs
7 
8 Abstract:
9 
10  Z3 Managed API: Arith Sorts
11 
12 Author:
13 
14  Christoph Wintersteiger (cwinter) 2012-11-23
15 
16 Notes:
17 
18 --*/
19 
20 using System;
22 
23 namespace Microsoft.Z3
24 {
28  public class ArithSort : Sort
29  {
30  #region Internal
31  internal ArithSort(Context ctx, IntPtr obj) : base(ctx, obj) { Contract.Requires(ctx != null); }
32  #endregion
33  };
34 }
An arithmetic sort, i.e., Int or Real.
Definition: ArithSort.cs:28
The main interaction with Z3 happens via the Context.
Definition: Context.cs:32
The Sort class implements type information for ASTs.
Definition: Sort.cs:29