3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-03-19 03:23:10 +00:00

fixes to finite domain arrays

- relevancy could be off and array solver doesn't compensate, #7544
- enforce equalities across store for small domain axioms #8065
This commit is contained in:
Nikolaj Bjorner 2025-12-26 12:04:57 -08:00
parent c12425c86f
commit e4cdbe0035
4 changed files with 61 additions and 67 deletions

View file

@ -90,6 +90,8 @@ namespace smt {
virtual final_check_status assert_delayed_axioms();
final_check_status mk_interface_eqs_at_final_check();
bool has_large_domain(app *array_term, rational& domain_size);
bool has_unitary_domain(app *array_term);
static void display_ids(std::ostream & out, unsigned n, enode * const * v);
public: