Z3
src
api
dotnet
BitVecExpr.cs
Go to the documentation of this file.
1
/*++
2
Copyright (<c>) 2012 Microsoft Corporation
3
4
Module Name:
5
6
BitVecExpr.cs
7
8
Abstract:
9
10
Z3 Managed API: BitVec Expressions
11
12
Author:
13
14
Christoph Wintersteiger (cwinter) 2012-11-23
15
16
Notes:
17
18
--*/
19
using
System
;
20
using
System
.Collections.Generic;
21
using
System
.Linq;
22
using
System
.Text;
23
24
using
System
.
Diagnostics
.
Contracts
;
25
26
namespace
Microsoft
.Z3
27
{
31
public
class
BitVecExpr
:
Expr
32
{
33
37
public
uint SortSize
38
{
39
get
{
return
((
BitVecSort
)
Sort
).Size; }
40
}
41
42
#region Internal
43
internal
BitVecExpr
(
Context
ctx, IntPtr obj) : base(ctx, obj) { Contract.Requires(ctx != null); }
45
#endregion
46
}
47
}
Microsoft.Z3.BitVecSort
Bit-vector sorts.
Definition:
BitVecSort.cs:28
System
System.Diagnostics
Microsoft
Microsoft.Z3.Expr
Expressions are terms.
Definition:
Expr.cs:29
Microsoft.Z3.BitVecExpr
Bit-vector expressions
Definition:
BitVecExpr.cs:31
System.Diagnostics.Contracts
Definition:
DummyContracts.cs:21
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