Z3
BitVecSort.cs
Go to the documentation of this file.
1/*++
2Copyright (c) 2012 Microsoft Corporation
3
4Module Name:
5
6 BitVecSort.cs
7
8Abstract:
9
10 Z3 Managed API: BitVec Sorts
11
12Author:
13
14 Christoph Wintersteiger (cwinter) 2012-11-23
15
16Notes:
17
18--*/
19
20using System.Diagnostics;
21using System;
22
23namespace Microsoft.Z3
24{
28 public class BitVecSort : Sort
29 {
33 public uint Size
34 {
35 get { return Native.Z3_get_bv_sort_size(Context.nCtx, NativeObject); }
36 }
37
38 #region Internal
39 internal BitVecSort(Context ctx, IntPtr obj) : base(ctx, obj) { Debug.Assert(ctx != null); }
40 #endregion
41 };
42}
Bit-vector sorts.
Definition: BitVecSort.cs:29
uint Size
The size of the bit-vector sort.
Definition: BitVecSort.cs:34
The main interaction with Z3 happens via the Context.
Definition: Context.cs:32
The Sort class implements type information for ASTs.
Definition: Sort.cs:29