Z3
Public Member Functions
BitVecSort Class Reference
+ Inheritance diagram for BitVecSort:

Public Member Functions

int getSize ()
 
- Public Member Functions inherited from Sort
boolean equals (Object o)
 
int hashCode ()
 
int getId ()
 
Z3_sort_kind getSortKind ()
 
Symbol getName ()
 
String toString ()
 
- Public Member Functions inherited from AST
boolean equals (Object o)
 
int compareTo (Object other)
 
int hashCode ()
 
int getId ()
 
AST translate (Context ctx)
 
Z3_ast_kind getASTKind ()
 
boolean isExpr ()
 
boolean isApp ()
 
boolean isVar ()
 
boolean isQuantifier ()
 
boolean isSort ()
 
boolean isFuncDecl ()
 
String toString ()
 
String getSExpr ()
 
- Public Member Functions inherited from Z3Object
void dispose ()
 
- Public Member Functions inherited from IDisposable
void dispose ()
 

Additional Inherited Members

- Protected Member Functions inherited from Z3Object
void finalize ()
 

Detailed Description

Bit-vector sorts.

Definition at line 23 of file BitVecSort.java.

Member Function Documentation

int getSize ( )
inline

The size of the bit-vector sort.

Exceptions
Z3Exceptionon error
Returns
an int

Definition at line 30 of file BitVecSort.java.

31  {
32  return Native.getBvSortSize(getContext().nCtx(), getNativeObject());
33  }