mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 13:28:47 +00:00
This commit is contained in:
parent
6f56d87694
commit
1935e86966
|
@ -114,6 +114,8 @@ namespace euf {
|
||||||
auto* s_ext = sort2solver(e->get_sort());
|
auto* s_ext = sort2solver(e->get_sort());
|
||||||
if (s_ext && s_ext != e_ext)
|
if (s_ext && s_ext != e_ext)
|
||||||
s_ext->apply_sort_cnstr(n, e->get_sort());
|
s_ext->apply_sort_cnstr(n, e->get_sort());
|
||||||
|
else if (!s_ext && !e_ext && is_app(e))
|
||||||
|
unhandled_function(to_app(e)->get_decl());
|
||||||
}
|
}
|
||||||
expr* a = nullptr, * b = nullptr;
|
expr* a = nullptr, * b = nullptr;
|
||||||
if (m.is_eq(e, a, b) && a->get_sort()->get_family_id() != null_family_id) {
|
if (m.is_eq(e, a, b) && a->get_sort()->get_family_id() != null_family_id) {
|
||||||
|
|
Loading…
Reference in a new issue