Z3
BitVecSort.java
Go to the documentation of this file.
1 
18 package com.microsoft.z3;
19 
23 public class BitVecSort extends Sort
24 {
28  public int getSize() throws Z3Exception
29  {
30  return Native.getBvSortSize(getContext().nCtx(), getNativeObject());
31  }
32 
33  BitVecSort(Context ctx, long obj) throws Z3Exception
34  {
35  super(ctx, obj);
36  }
37 };
static int getBvSortSize(long a0, long a1)
Definition: Native.java:2003