Z3
src
api
dotnet
CharSort.cs
Go to the documentation of this file.
1
/*++
2
Copyright (c) 2016 Microsoft Corporation
3
4
Module Name:
5
6
CharSort.cs
7
8
Abstract:
9
10
Z3 Managed API: Character 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
CharSort
:
Sort
29
{
30
#region Internal
31
internal
CharSort
(
Context
ctx, IntPtr obj) : base(ctx, obj) { Debug.Assert(ctx !=
null
); }
32
internal
CharSort
(
Context
ctx) : base(ctx, Native.Z3_mk_char_sort(ctx.nCtx)) { Debug.Assert(ctx !=
null
); }
33
#endregion
34
}
35
}
Microsoft.Z3.CharSort
A Character sort
Definition:
CharSort.cs:29
Microsoft.Z3.Context
The main interaction with Z3 happens via the Context.
Definition:
Context.cs:34
Microsoft.Z3.Sort
The Sort class implements type information for ASTs.
Definition:
Sort.cs:29
Microsoft.Z3
Definition:
AlgebraicNum.cs:27
Generated on Mon Dec 11 2023 12:40:39 for Z3 by
1.9.3