3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-07-04 22:36:10 +00:00

disable lookahead on compound values (fixes bug reported by Clemens), bail to rationals when there are reals.

This commit is contained in:
Nikolaj Bjorner 2025-01-24 11:01:18 -08:00
parent 053349cd36
commit 9e8dd68ee6
2 changed files with 29 additions and 7 deletions

View file

@ -311,6 +311,7 @@ namespace sls {
num_t value(var_t v) const { return m_vars[v].value(); }
bool is_num(expr* e, num_t& i);
num_t to_num(rational const& r);
void check_real(expr* e);
expr_ref from_num(sort* s, num_t const& n);
void check_ineqs();
void init_bool_var(sat::bool_var bv);