mirror of
https://github.com/Z3Prover/z3
synced 2025-07-23 12:48:53 +00:00
This commit is contained in:
parent
34fc0cdd5c
commit
29ac26eab3
2 changed files with 2 additions and 1 deletions
|
@ -109,7 +109,7 @@ namespace euf {
|
||||||
if (m.is_bool(e))
|
if (m.is_bool(e))
|
||||||
attach_lit(literal(si.add_bool_var(e), false), e);
|
attach_lit(literal(si.add_bool_var(e), false), e);
|
||||||
|
|
||||||
if (!m.is_bool(e) && e->get_sort()->get_family_id() != null_family_id) {
|
if (!m.is_bool(e) && !m.is_uninterp(e->get_sort())) {
|
||||||
auto* e_ext = expr2solver(e);
|
auto* e_ext = expr2solver(e);
|
||||||
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)
|
||||||
|
|
|
@ -153,6 +153,7 @@ namespace euf {
|
||||||
m_unhandled_functions.push_back(f);
|
m_unhandled_functions.push_back(f);
|
||||||
m_trail.push(push_back_vector<func_decl_ref_vector>(m_unhandled_functions));
|
m_trail.push(push_back_vector<func_decl_ref_vector>(m_unhandled_functions));
|
||||||
IF_VERBOSE(0, verbose_stream() << mk_pp(f, m) << " not handled\n");
|
IF_VERBOSE(0, verbose_stream() << mk_pp(f, m) << " not handled\n");
|
||||||
|
SASSERT(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
void solver::init_search() {
|
void solver::init_search() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue