Appends the user-provided string s to the interaction log. @throws Z3Exception
(String s)
| 54 | * @throws Z3Exception |
| 55 | **/ |
| 56 | public static void append(String s) |
| 57 | { |
| 58 | if (!m_is_open) |
| 59 | throw new Z3Exception("Log cannot be closed."); |
| 60 | Native.appendLog(s); |
| 61 | } |
| 62 | |
| 63 | /** |
| 64 | * Checks whether the interaction log is opened. |
no test coverage detected