Z3
UninterpretedSort.cs
Go to the documentation of this file.
1/*++
2Copyright (c) 2012 Microsoft Corporation
3
4Module Name:
5
6 UninterpretedSort.cs
7
8Abstract:
9
10 Z3 Managed API: Uninterpreted Sorts
11
12Author:
13
14 Christoph Wintersteiger (cwinter) 2012-11-23
15
16Notes:
17
18--*/
19
20using System;
21using System.Diagnostics;
22
23namespace Microsoft.Z3
24{
28 public class UninterpretedSort : Sort
29 {
30 #region Internal
31 internal UninterpretedSort(Context ctx, IntPtr obj)
32 : base(ctx, obj)
33 {
34 Debug.Assert(ctx != null);
35 }
36 internal UninterpretedSort(Context ctx, Symbol s)
37 : base(ctx, Native.Z3_mk_uninterpreted_sort(ctx.nCtx, s.NativeObject))
38 {
39 Debug.Assert(ctx != null);
40 Debug.Assert(s != null);
41 }
42 #endregion
43 }
44}
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
Symbols are used to name several term and type constructors.
Definition: Symbol.cs:30