3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-02 13:27:01 +00:00

adding optimize bindings for ML, adding get_reason_unknown to optimize, mentioned in pull request issue #188, second edition

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2015-08-09 17:49:20 +02:00
parent 7c9dd6b8a8
commit eb5af100bd
10 changed files with 220 additions and 2 deletions

View file

@ -2866,6 +2866,92 @@ struct
end
module Optimize =
struct
type opt = z3_native_object
type handle = { opt : opt; h : int }
let mk_handle (x : opt) h = { opt = x; h = h }
let mk_opt (ctx : context) =
let res : opt = { m_ctx = ctx;
m_n_obj = null ;
inc_ref = Z3native.optimzie_inc_ref ;
dec_ref = Z3native.optimzie_dec_ref } in
(z3obj_sno res ctx (Z3native.mk_optimize (context_gno ctx))) ;
(z3obj_create res) ;
res
let get_help ( x : opt ) =
Z3native.optimize_get_help (z3obj_gnc x) (z3obj_gno x)
let set_params ( x : opt ) ( p : Params.params )=
Z3native.optimize_set_params (z3obj_gnc x) (z3obj_gno x) (z3obj_gno p)
let get_param_descrs ( x : opt ) =
Params.ParamDescrs.param_descrs_of_ptr (z3obj_gc x) (Z3native.optimize_get_param_descrs (z3obj_gnc x) (z3obj_gno x))
let add ( x : opt ) ( constraints : expr list ) =
let f e = (Z3native.optimize_add (z3obj_gnc x) (z3obj_gno x) (Expr.gno e)) in
List.iter f constraints
let add_soft ( x : opt) ( e : Expr.expr) ( w : int) ( s : string ) =
mk_handle x (Z3native.optimize_add_soft (z3obj_gnc x) (z3obj_gno x) (Expr.gno e) w s)
let maximize ( x : opt) ( e : Expr.expr ) =
mk_handle x (Z3native.optimize_maximize (z3obj_gnc x) (z3obj_gno x) (Expr.gno e))
let minimize ( x : opt) ( e : Expr.expr ) =
mk_handle x (Z3native.optimize_minimize (z3obj_gnc x) (z3obj_gno x) (Expr.gno e))
let check ( x : opt ) =
let r = lbool_of_int (Z3native.optimize_check_sat (z3obj_gnc x) (z3obj_gno x) in
match r with
| L_TRUE -> SATISFIABLE
| L_FALSE -> UNSATISFIABLE
| _ -> UNKNOWN
let get_model ( x : opt ) =
let q = Z3native.optimize_get_model (z3obj_gnc x) (z3obj_gno x) in
if (Z3native.is_null q) then
None
else
Some (Model.create (z3obj_gc x) q)
let get_lower ( x : handle ) =
expr_of_ptr (z3obj_gnc x.opt) (Z3native.optimize_get_lower (z3obj_gnc x) (z3obj_gno x) h.h)
let get_upper ( x : handle ) =
expr_of_ptr (z3obj_gnc x.opt) (Z3native.optimize_get_upper (z3obj_gnc x) (z3obj_gno x) h.h)
let get_value ( x : handle ) =
expr_of_ptr (z3obj_gnc x.opt) (Z3native.optimize_get_value (z3obj_gnc x) (z3obj_gno x) h.h)
let push ( x : opt ) = Z3native.optimize_push (z3obj_gnc x) (z3obj_gno x) n
let pop ( x : opt ) = Z3native.optimize_pop (z3obj_gnc x) (z3obj_gno x)
let get_reason_unknown ( x : opt ) =
Z3native.optimize_get_reason_unknown (z3obj_gnc x) (z3obj_gno x)
let to_string ( x : opt ) = Z3native.optimize_to_string (z3obj_gnc x) (z3obj_gno x)
let get_statistics ( x : opt ) =
let s = Z3native.optimize_get_statistics (z3obj_gnc x) (z3obj_gno x) in
(Statistics.create (z3obj_gc x) s)
end
module SMT =
struct
let benchmark_to_smtstring ( ctx : context ) ( name : string ) ( logic : string ) ( status : string ) ( attributes : string ) ( assumptions : expr list ) ( formula : expr ) =

View file

@ -3227,6 +3227,93 @@ sig
val parse_file : fixedpoint -> string -> Expr.expr list
end
(** Optimization *)
module Optimize :
sig
type opt
type handle
(** Create a Optimize context. *)
val mk_opt : context -> opt
(** A string that describes all available optimize solver parameters. *)
val get_help : opt -> string
(** Sets the optimize solver parameters. *)
val set_params : opt -> Params.params -> unit
(** Retrieves parameter descriptions for Optimize solver. *)
val get_param_descrs : opt -> Params.ParamDescrs.param_descrs
(** Assert a constraints into the optimize solver. *)
val add : opt -> Expr.expr list -> unit
(** Asssert a soft constraint.
Supply integer weight and string that identifies a group
of soft constraints.
*)
val add_soft : opt -> Expr.expr -> int -> string -> handle
(** Add maximization objective.
*)
val maximize : opt -> Expr.expr -> handle
(** Add minimization objective.
*)
val minimize : opt -> Expr.expr -> handle
(** Checks whether the assertions in the context are satisfiable and solves objectives.
*)
val check : opt -> Solver.status
(** Retrieve model from satisfiable context *)
val get_model : opt -> Model.model
(** Retrieve lower bound in current model for handle *)
val get_lower : handle -> Expr.expr
(** Retrieve upper bound in current model for handle *)
val get_upper : handle -> Expr.expr
(** Retrieve value in current model for handle *)
val get_value : handle -> Expr.expr
(** Creates a backtracking point.
{!pop} *)
val push : opt -> unit
(** Backtrack one backtracking point.
Note that an exception is thrown if Pop is called without a corresponding [Push]
{!push} *)
val pop : opt -> unit
(** Retrieve explanation why optimize engine returned status Unknown. *)
val get_reason_unknown : opt -> string
(** Retrieve SMT-LIB string representation of optimize object. *)
val to_string : opt -> string
(** Retrieve statistics information from the last call to check *)
val get_statistics : opt -> Statistics.statistics
end
(** Functions for handling SMT and SMT2 expressions and files *)
module SMT :
sig