mirror of
https://github.com/Z3Prover/z3
synced 2025-04-27 10:55:50 +00:00
Java API: slight overhaul in preparation for the FP additions
Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
parent
8e7278f02c
commit
376614a782
38 changed files with 1289 additions and 889 deletions
|
@ -18,17 +18,18 @@ Notes:
|
|||
package com.microsoft.z3;
|
||||
|
||||
/**
|
||||
* Interaction logging for Z3. <remarks> Note that this is a global, static log
|
||||
* Interaction logging for Z3.
|
||||
* Remarks: Note that this is a global, static log
|
||||
* and if multiple Context objects are created, it logs the interaction with all
|
||||
* of them. </remarks>
|
||||
* of them.
|
||||
**/
|
||||
public final class Log
|
||||
{
|
||||
private static boolean m_is_open = false;
|
||||
|
||||
/**
|
||||
* Open an interaction log file. <param name="filename">the name of the file
|
||||
* to open</param>
|
||||
* Open an interaction log file.
|
||||
* @param filename the name of the file to open
|
||||
*
|
||||
* @return True if opening the log file succeeds, false otherwise.
|
||||
**/
|
||||
|
@ -48,7 +49,7 @@ public final class Log
|
|||
}
|
||||
|
||||
/**
|
||||
* Appends the user-provided string <paramref name="s"/> to the interaction
|
||||
* Appends the user-provided string {@code s} to the interaction
|
||||
* log.
|
||||
* @throws Z3Exception
|
||||
**/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue