3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-12-04 19:16:46 +00:00

open_log returns bool

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2025-11-25 20:48:57 -08:00
parent bcf2c0b3a9
commit 8346bb6679

View file

@ -15,7 +15,7 @@ type context = Z3native.context
module Log =
struct
let open_ filename =
lbool_of_int (Z3native.open_log filename) = L_TRUE
(Z3native.open_log filename)
let close = Z3native.close_log
let append = Z3native.append_log
end