mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 10:25:18 +00:00
Add Memory.reset to OCaml API
This commit is contained in:
parent
a83097d5cc
commit
f18227bf2d
|
@ -2023,3 +2023,7 @@ let toggle_warning_messages = Z3native.toggle_warning_messages
|
|||
let enable_trace = Z3native.enable_trace
|
||||
|
||||
let disable_trace = Z3native.enable_trace
|
||||
|
||||
module Memory = struct
|
||||
let reset = Z3native.reset_memory
|
||||
end
|
||||
|
|
|
@ -3472,3 +3472,11 @@ val enable_trace : string -> unit
|
|||
Remarks: It is a NOOP otherwise.
|
||||
*)
|
||||
val disable_trace : string -> unit
|
||||
|
||||
|
||||
(** Memory management **)
|
||||
module Memory :
|
||||
sig
|
||||
(** Reset all allocated resourced **)
|
||||
val reset : unit -> unit
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue