3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-27 08:28:44 +00:00

use PB solver instead of full arithmetic for bouding Pareto fronts so that difference logic theory isn't broken. Codeplex issue 175

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2015-02-22 09:46:21 -08:00
parent 49483fdc28
commit c3232693f0
5 changed files with 51 additions and 54 deletions

View file

@ -282,7 +282,7 @@ namespace opt {
// pareto
void yield();
expr_ref mk_ge(expr* t, expr* s);
void mk_term_val(model_ref& mdl, objective const& obj, expr_ref& term, expr_ref& val);
expr_ref mk_cmp(bool is_ge, model_ref& mdl, objective const& obj);
};