3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-08 12:11:23 +00:00

working on pareto and upper/lower bound facilities

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2013-11-08 13:52:27 -08:00
parent 6caee5e3ca
commit f350efffc7
4 changed files with 36 additions and 39 deletions

View file

@ -44,6 +44,8 @@ namespace opt {
void add(app* t, bool is_max);
void commit_assignment(unsigned i);
void set_cancel(bool f);
void updt_params(params_ref& p);
@ -51,7 +53,9 @@ namespace opt {
void display(std::ostream& out) const;
inf_eps get_value(unsigned index) const;
inf_eps get_lower(unsigned index) const;
inf_eps get_upper(unsigned index) const;
private:
lbool basic_opt();