mirror of
https://github.com/Z3Prover/z3
synced 2025-06-04 05:11:21 +00:00
Merge branch 'master' of https://github.com/z3prover/z3
This commit is contained in:
commit
253f457425
3 changed files with 12 additions and 4 deletions
|
@ -2023,3 +2023,7 @@ let toggle_warning_messages = Z3native.toggle_warning_messages
|
||||||
let enable_trace = Z3native.enable_trace
|
let enable_trace = Z3native.enable_trace
|
||||||
|
|
||||||
let disable_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.
|
Remarks: It is a NOOP otherwise.
|
||||||
*)
|
*)
|
||||||
val disable_trace : string -> unit
|
val disable_trace : string -> unit
|
||||||
|
|
||||||
|
|
||||||
|
(** Memory management **)
|
||||||
|
module Memory :
|
||||||
|
sig
|
||||||
|
(** Reset all allocated resourced **)
|
||||||
|
val reset : unit -> unit
|
||||||
|
end
|
||||||
|
|
|
@ -19,7 +19,3 @@ Copyright (c) 2015 Microsoft Corporation
|
||||||
#ifndef DEFINE_TYPE
|
#ifndef DEFINE_TYPE
|
||||||
#define DEFINE_TYPE(T) typedef struct _ ## T *T
|
#define DEFINE_TYPE(T) typedef struct _ ## T *T
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef DEFINE_VOID
|
|
||||||
#define DEFINE_VOID(T) typedef void* T
|
|
||||||
#endif
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue