3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-05 17:14:07 +00:00

Fix complete_partial_func for finite domains (#7547)

This commit is contained in:
Can Cebeci 2025-02-06 01:14:55 +01:00 committed by GitHub
parent 091984419e
commit af270da785
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -345,14 +345,12 @@ void proto_model::compress() {
void proto_model::complete_partial_func(func_decl * f, bool use_fresh) {
func_interp * fi = get_func_interp(f);
if (fi && fi->is_partial()) {
expr * else_value;
if (use_fresh) {
expr * else_value = nullptr;
if (use_fresh)
else_value = get_fresh_value(f->get_range());
}
else {
if (!else_value)
else_value = fi->get_max_occ_result();
}
if (else_value == nullptr)
if (!else_value)
else_value = get_some_value(f->get_range());
fi->set_else(else_value);
}