mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 16:45:31 +00:00
ML build system checks
Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
parent
518da6b6e2
commit
8e83f8d034
2 changed files with 62 additions and 8 deletions
|
@ -10,11 +10,9 @@ module Log =
|
|||
struct
|
||||
let m_is_open = false
|
||||
(* CMW: "open" seems to be an invalid function name*)
|
||||
let open_ fn = let rv = (open_log fn) in
|
||||
Printf.printf "ol returned %d\n" rv ;
|
||||
((int2lbool rv) == L_TRUE)
|
||||
let close = close_log
|
||||
let append s = append_log s
|
||||
let open_ fn = int2lbool(open_log fn) == L_TRUE
|
||||
let close = (close_log)
|
||||
let append s = (append_log s)
|
||||
end
|
||||
|
||||
module Version =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue