3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 09:05:31 +00:00

fix build

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-12-07 11:02:25 +03:00
parent 3fa3c8bf76
commit a2aab76c22
2 changed files with 6 additions and 2 deletions

View file

@ -367,7 +367,9 @@ final_check_status theory_diff_logic<Ext>::final_check_eh() {
for (enode* n : get_context().enodes()) {
family_id fid = n->get_owner()->get_family_id();
if (fid != get_family_id() &&
fid != get_manager().get_basic_family_id()) {
fid != get_manager().get_basic_family_id() &&
!is_uninterp_const(n->get_owner())) {
TRACE("arith", tout << mk_pp(n->get_owner(), get_manager()) << "\n";);
return FC_GIVEUP;
}
}