mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
add missing generation of z3.z3 for pydoc and add some explanations to logging function declaration
This commit is contained in:
parent
95c3dd9224
commit
b5a89eb4ab
|
@ -335,6 +335,7 @@ try:
|
||||||
|
|
||||||
for modulename in (
|
for modulename in (
|
||||||
'z3',
|
'z3',
|
||||||
|
'z3.z3',
|
||||||
'z3.z3consts',
|
'z3.z3consts',
|
||||||
'z3.z3core',
|
'z3.z3core',
|
||||||
'z3.z3num',
|
'z3.z3num',
|
||||||
|
|
|
@ -49,6 +49,13 @@ type context
|
||||||
val mk_context : (string * string) list -> context
|
val mk_context : (string * string) list -> context
|
||||||
|
|
||||||
(** Interaction logging for Z3
|
(** Interaction logging for Z3
|
||||||
|
Interaction logs are used to record calls into the API into a text file.
|
||||||
|
The text file can be replayed using z3. It has to be the same version of z3
|
||||||
|
to ensure that low level codes emitted in a log are compatible with the
|
||||||
|
version of z3 replaying the log. The file suffix ".log" is understood
|
||||||
|
by z3 as the format of the file being an interaction log. You can use the
|
||||||
|
optional comman-line parameter "-log" to force z3 to treat an input file
|
||||||
|
as an interaction log.
|
||||||
Note that this is a global, static log and if multiple Context
|
Note that this is a global, static log and if multiple Context
|
||||||
objects are created, it logs the interaction with all of them. *)
|
objects are created, it logs the interaction with all of them. *)
|
||||||
module Log :
|
module Log :
|
||||||
|
|
Loading…
Reference in a new issue