3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-11-25 15:09:32 +00:00

add consistency per request from Gabriel R

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2015-08-09 18:56:42 +02:00
parent eb5af100bd
commit 76ca64b93b
2 changed files with 21 additions and 20 deletions

View file

@ -2766,7 +2766,7 @@ struct
let get_help ( x : fixedpoint ) =
Z3native.fixedpoint_get_help (z3obj_gnc x) (z3obj_gno x)
let set_params ( x : fixedpoint ) ( p : Params.params )=
let set_parameters ( x : fixedpoint ) ( p : Params.params )=
Z3native.fixedpoint_set_params (z3obj_gnc x) (z3obj_gno x) (z3obj_gno p)
let get_param_descrs ( x : fixedpoint ) =
@ -2868,7 +2868,8 @@ end
module Optimize =
struct
type opt = z3_native_object
type optimize = z3_native_object
type opt = optimize
type handle = { opt : opt; h : int }
@ -2888,7 +2889,7 @@ struct
Z3native.optimize_get_help (z3obj_gnc x) (z3obj_gno x)
let set_params ( x : opt ) ( p : Params.params )=
let set_parameters ( x : opt ) ( p : Params.params )=
Z3native.optimize_set_params (z3obj_gnc x) (z3obj_gno x) (z3obj_gno p)
let get_param_descrs ( x : opt ) =