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

testing bounds strengthening code

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2021-08-06 17:05:54 -07:00
parent 481e20bc20
commit f47930a4ff
5 changed files with 295 additions and 93 deletions

View file

@ -41,8 +41,6 @@ namespace polysat {
inc_level_i,
add_var_i,
add_mono_i,
add_ineq_i,
add_row_i,
set_active_i
};
@ -135,7 +133,7 @@ namespace polysat {
void unsat_core(ptr_vector<constraint>& constraints, unsigned_vector& deps);
// current value assigned to (linear) variable according to tableau.
rational value(pvar v);
bool value(pvar v, rational& val);
std::ostream& display(std::ostream& out) const { return out; }
void collect_statistics(::statistics & st) const {}