mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
More ML API
Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
parent
d2d4bf7f83
commit
f7b3529f01
12
examples/ml/MLExample.ml
Normal file
12
examples/ml/MLExample.ml
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
(*
|
||||||
|
Copyright (C) 2012 Microsoft Corporation
|
||||||
|
Author: CM Wintersteiger (cwinter) 2012-12-17
|
||||||
|
*)
|
||||||
|
|
||||||
|
open Z3
|
||||||
|
|
||||||
|
let _ = ignore(Log.open_ "z3.log") ;
|
||||||
|
let cfg = Some [("model", "true"); ("proof", "false")] in
|
||||||
|
let ctx = (new context cfg) in
|
||||||
|
ctx#dispose
|
||||||
|
;;
|
|
@ -1597,7 +1597,14 @@ class MLExampleComponent(ExampleComponent):
|
||||||
for mlfile in get_ml_files(self.ex_dir):
|
for mlfile in get_ml_files(self.ex_dir):
|
||||||
out.write(' %s/%s' % (self.to_ex_dir, mlfile))
|
out.write(' %s/%s' % (self.to_ex_dir, mlfile))
|
||||||
out.write('\n')
|
out.write('\n')
|
||||||
out.write('_ex_%s: ml_example.byte ml_example$(EXE_EXT)\n\n' % self.name)
|
out.write('_ex_%s: z3.cmxa' % self.name)
|
||||||
|
deps = ''
|
||||||
|
for mlfile in get_ml_files(self.ex_dir):
|
||||||
|
out.write(' %s' % os.path.join(self.to_ex_dir, mlfile))
|
||||||
|
if IS_WINDOWS:
|
||||||
|
deps = deps.replace('/', '\\')
|
||||||
|
out.write('%s\n' % deps)
|
||||||
|
out.write('\tcd %s && ocamlbuild -build-dir ../../%s -lib z3 MLExample.native && cd -\n\n' % (self.to_src_dir, BUILD_DIR))
|
||||||
|
|
||||||
class PythonExampleComponent(ExampleComponent):
|
class PythonExampleComponent(ExampleComponent):
|
||||||
def __init__(self, name, path):
|
def __init__(self, name, path):
|
||||||
|
|
|
@ -1,11 +1,8 @@
|
||||||
This directory is work in progress.
|
This directory is work in progress.
|
||||||
|
|
||||||
We are currently working on a brand new ML API.
|
We are currently working on a brand new ML API.
|
||||||
<<<<<<< HEAD
|
|
||||||
|
|
||||||
On Windows, there are no less than four different ports of OCaml. The Z3 build
|
On Windows, there are no less than four different ports of OCaml. The Z3 build
|
||||||
system assumes that either the win32 or the win64 port is installed. This means
|
system assumes that either the win32 or the win64 port is installed. This means
|
||||||
that OCaml will use `cl' as the underlying C compiler and not the cygwin or
|
that OCaml will use `cl' as the underlying C compiler and not the cygwin or
|
||||||
mingw compilers.
|
mingw compilers.
|
||||||
=======
|
|
||||||
>>>>>>> Beginnings of a new ML API
|
|
||||||
|
|
|
@ -1,27 +1,60 @@
|
||||||
(*
|
(*
|
||||||
Author: CM Wintersteiger
|
Copyright (C) 2012 Microsoft Corporation
|
||||||
(C) Microsoft Research, 2012
|
Author: CM Wintersteiger (cwinter) 2012-12-17
|
||||||
*)
|
*)
|
||||||
|
|
||||||
open Z3enums
|
open Z3enums
|
||||||
open Z3native
|
open Z3native
|
||||||
|
|
||||||
class context =
|
module Log =
|
||||||
|
struct
|
||||||
|
let m_is_open = false
|
||||||
|
(* CMW: "open" seems to be an invalid function name*)
|
||||||
|
let open_ fn = int2lbool(open_log fn) == L_TRUE
|
||||||
|
let close = (close_log)
|
||||||
|
let append s = (append_log s)
|
||||||
|
end
|
||||||
|
|
||||||
|
class virtual idisposable =
|
||||||
|
object
|
||||||
|
method virtual dispose : unit
|
||||||
|
end
|
||||||
|
|
||||||
|
class context settings =
|
||||||
object (self)
|
object (self)
|
||||||
val m_n_ctx : Z3native.z3_context option = None
|
inherit idisposable
|
||||||
|
val mutable m_n_ctx : Z3native.z3_context option = None
|
||||||
val mutable m_refCount : int = 0
|
val mutable m_refCount : int = 0
|
||||||
initializer Gc.finalise (fun self -> self#dispose ()) self
|
|
||||||
method dispose () =
|
initializer
|
||||||
Printf.printf "Disposing %d \n" (Oo.id self) ;
|
let cfg = mk_config() in
|
||||||
match m_n_ctx with
|
(match settings with
|
||||||
| Some(x) -> (del_context x)
|
| Some(x) ->
|
||||||
| None -> ()
|
let f e = (set_param_value cfg (fst e) (snd e)) in
|
||||||
|
(List.iter f x)
|
||||||
|
| _ -> ()
|
||||||
|
) ;
|
||||||
|
m_n_ctx <- Some (mk_context_rc cfg) ;
|
||||||
|
del_config(cfg) ;
|
||||||
|
Gc.finalise (fun self -> self#dispose) self
|
||||||
|
|
||||||
|
method dispose : unit =
|
||||||
|
if m_refCount == 0 then (
|
||||||
|
Printf.printf "Disposing %d \n" (Oo.id self) ;
|
||||||
|
match m_n_ctx with
|
||||||
|
| Some(x) -> (del_context x)
|
||||||
|
| None -> ()
|
||||||
|
) else (
|
||||||
|
(* re-queue for finalization? *)
|
||||||
|
)
|
||||||
|
|
||||||
method sub_one_ctx_obj = m_refCount <- m_refCount - 1
|
method sub_one_ctx_obj = m_refCount <- m_refCount - 1
|
||||||
method add_one_ctx_obj = m_refCount <- m_refCount + 1
|
method add_one_ctx_obj = m_refCount <- m_refCount + 1
|
||||||
end
|
end
|
||||||
|
|
||||||
class virtual z3object ctx_init obj_init =
|
class virtual z3object ctx_init obj_init =
|
||||||
object (self)
|
object (self)
|
||||||
|
inherit idisposable
|
||||||
val mutable m_ctx : context option = ctx_init
|
val mutable m_ctx : context option = ctx_init
|
||||||
val mutable m_n_obj : Z3native.ptr option = obj_init
|
val mutable m_n_obj : Z3native.ptr option = obj_init
|
||||||
|
|
||||||
|
@ -34,7 +67,7 @@ class virtual z3object ctx_init obj_init =
|
||||||
)
|
)
|
||||||
| None -> ()
|
| None -> ()
|
||||||
);
|
);
|
||||||
Gc.finalise (fun self -> self#dispose ()) self
|
Gc.finalise (fun self -> self#dispose) self
|
||||||
|
|
||||||
method virtual incref : Z3native.ptr -> unit
|
method virtual incref : Z3native.ptr -> unit
|
||||||
method virtual decref : Z3native.ptr -> unit
|
method virtual decref : Z3native.ptr -> unit
|
||||||
|
@ -42,7 +75,7 @@ class virtual z3object ctx_init obj_init =
|
||||||
(*
|
(*
|
||||||
Disposes of the underlying native Z3 object.
|
Disposes of the underlying native Z3 object.
|
||||||
*)
|
*)
|
||||||
method dispose () =
|
method dispose =
|
||||||
Printf.printf "Disposing %d \n" (Oo.id self) ;
|
Printf.printf "Disposing %d \n" (Oo.id self) ;
|
||||||
(match m_n_obj with
|
(match m_n_obj with
|
||||||
| Some (x) -> self#decref x; m_n_obj <- None
|
| Some (x) -> self#decref x; m_n_obj <- None
|
||||||
|
@ -70,6 +103,7 @@ class virtual z3object ctx_init obj_init =
|
||||||
|
|
||||||
method get_context = m_ctx
|
method get_context = m_ctx
|
||||||
|
|
||||||
|
(*
|
||||||
method array_to_native a =
|
method array_to_native a =
|
||||||
let f e = e#get_native_object in
|
let f e = e#get_native_object in
|
||||||
(Array.map f a)
|
(Array.map f a)
|
||||||
|
@ -78,6 +112,7 @@ class virtual z3object ctx_init obj_init =
|
||||||
match a with
|
match a with
|
||||||
| Some(x) -> (Array.length x)
|
| Some(x) -> (Array.length x)
|
||||||
| None -> 0
|
| None -> 0
|
||||||
|
*)
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue