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

Public Member Functions

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

Additional Inherited Members

- Protected Member Functions inherited from Sort
 Sort (Context ctx) throws Z3Exception
 
- Protected Member Functions inherited from Z3Object
void finalize () throws Z3Exception
 

Detailed Description

Array sorts.

Definition at line 23 of file ArraySort.java.

Member Function Documentation

Sort getDomain ( ) throws Z3Exception
inline

The domain of the array sort.

Exceptions
Z3Exception

Definition at line 29 of file ArraySort.java.

30  {
31  return Sort.create(getContext(),
32  Native.getArraySortDomain(getContext().nCtx(), getNativeObject()));
33  }
Sort(Context ctx)
Definition: Sort.java:101
Sort getRange ( ) throws Z3Exception
inline

The range of the array sort.

Exceptions
Z3Exception

Definition at line 39 of file ArraySort.java.

40  {
41  return Sort.create(getContext(),
42  Native.getArraySortRange(getContext().nCtx(), getNativeObject()));
43  }
Sort(Context ctx)
Definition: Sort.java:101