3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-22 16:45: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

@ -1076,7 +1076,9 @@ namespace qe {
bool validate_assumptions(model& mdl, expr_ref_vector const& core) {
for (expr* c : core) {
if (!mdl.is_true(c)) {
TRACE("qe", tout << "component of core is not true: " << mk_pp(c, m) << "\n";);
TRACE("qe", tout << "component of core is not true: " << mk_pp(c, m) << "\n";
tout << mdl << "\n";
);
return false;
}
}

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;
}
}