Z3
src
api
dotnet
SetSort.cs
Go to the documentation of this file.
1
/*++
2
Copyright (c) 2012 Microsoft Corporation
3
4
Module Name:
5
6
SetSort.cs
7
8
Abstract:
9
10
Z3 Managed API: Set Sorts
11
12
Author:
13
14
Christoph Wintersteiger (cwinter) 2012-11-23
15
16
Notes:
17
18
--*/
19
20
using
System.Diagnostics;
21
using
System;
22
23
namespace
Microsoft.Z3
24
{
28
public
class
SetSort
:
Sort
29
{
30
#region Internal
31
internal
SetSort
(
Context
ctx, IntPtr obj)
32
: base(ctx, obj)
33
{
34
Debug.Assert(ctx !=
null
);
35
}
36
internal
SetSort
(
Context
ctx,
Sort
ty)
37
: base(ctx, Native.Z3_mk_set_sort(ctx.nCtx, ty.NativeObject))
38
{
39
Debug.Assert(ctx !=
null
);
40
Debug.Assert(ty !=
null
);
41
}
42
#endregion
43
}
44
}
Microsoft.Z3.Context
The main interaction with Z3 happens via the Context.
Definition:
Context.cs:32
Microsoft.Z3.SetSort
Set sorts.
Definition:
SetSort.cs:29
Microsoft.Z3.Sort
The Sort class implements type information for ASTs.
Definition:
Sort.cs:29
Microsoft.Z3
Definition:
AlgebraicNum.cs:27
Generated on Sat Jun 4 2022 07:10:05 for Z3 by
1.9.3