The int value of the symbol. Remarks: Throws an exception if the symbol is not of int kind.
()
| 30 | * is not of int kind. |
| 31 | **/ |
| 32 | public int getInt() |
| 33 | { |
| 34 | if (!isIntSymbol()) |
| 35 | throw new Z3Exception("Int requested from non-Int symbol"); |
| 36 | return Native.getSymbolInt(getContext().nCtx(), getNativeObject()); |
| 37 | } |
| 38 | |
| 39 | IntSymbol(Context ctx, long obj) |
| 40 | { |
nothing calls this directly
no test coverage detected