Z3
src
api
dotnet
SeqSort.cs
Go to the documentation of this file.
1
/*++
2
Copyright (c) 2016 Microsoft Corporation
3
4
Module Name:
5
6
SeqSort.cs
7
8
Abstract:
9
10
Z3 Managed API: Sequence Sorts
11
12
Author:
13
14
Christoph Wintersteiger (cwinter) 2012-11-23
15
16
Notes:
17
18
--*/
19
20
using
System
;
21
using
System
.
Diagnostics
.
Contracts
;
22
23
namespace
Microsoft
.Z3
24
{
28
public
class
SeqSort
:
Sort
29
{
30
#region Internal
31
internal
SeqSort
(
Context
ctx, IntPtr obj)
32
: base(ctx, obj)
33
{
34
Contract.Requires(ctx != null);
35
}
36
internal
SeqSort
(
Context
ctx)
37
: base(ctx, Native.Z3_mk_int_sort(ctx.nCtx))
38
{
39
Contract.Requires(ctx != null);
40
}
41
#endregion
42
}
43
}
z3py.SeqSort
def SeqSort(s)
Definition:
z3py.py:9357
System
System.Diagnostics
Microsoft
System.Diagnostics.Contracts
Definition:
DummyContracts.cs:21
Microsoft.Z3.SeqSort
A Sequence sort
Definition:
SeqSort.cs:28
Microsoft.Z3.Context
The main interaction with Z3 happens via the Context.
Definition:
Context.cs:32
Microsoft.Z3.Sort
The Sort class implements type information for ASTs.
Definition:
Sort.cs:29
Generated on Sat Nov 12 2016 23:18:40 for Z3 by
1.8.12