3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 01:24:08 +00:00
This commit is contained in:
Nikolaj Bjorner 2021-07-31 13:54:00 -07:00
parent b723e1093b
commit eefde76bd4

View file

@ -389,8 +389,7 @@ namespace smt {
if (fid == null_family_id) return !m_hidden_ufs.contains(f);
if (fid == m.get_basic_family_id()) return false;
theory * th = m_context->get_theory(fid);
if (!th) return true;
return th->include_func_interp(f);
return !th || th->include_func_interp(f);
}
/**