Z3
BitVecExpr.cs
Go to the documentation of this file.
1/*++
2Copyright (<c>) 2012 Microsoft Corporation
3
4Module Name:
5
6 BitVecExpr.cs
7
8Abstract:
9
10 Z3 Managed API: BitVec Expressions
11
12Author:
13
14 Christoph Wintersteiger (cwinter) 2012-11-23
15
16Notes:
17
18--*/
19using System.Diagnostics;
20using System;
21using System.Collections.Generic;
22using System.Linq;
23using System.Text;
24
25
26namespace 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
44 internal BitVecExpr(Context ctx, IntPtr obj) : base(ctx, obj) { Debug.Assert(ctx != null); }
45 #endregion
46 }
47}
Bit-vector expressions
Definition: BitVecExpr.cs:32
uint SortSize
The size of the sort of a bit-vector term.
Definition: BitVecExpr.cs:38
Bit-vector sorts.
Definition: BitVecSort.cs:29
The main interaction with Z3 happens via the Context.
Definition: Context.cs:32
Expressions are terms.
Definition: Expr.cs:31
The Sort class implements type information for ASTs.
Definition: Sort.cs:29