mirror of
https://github.com/Z3Prover/z3
synced 2025-06-09 07:33:24 +00:00
fix build
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
3fa3c8bf76
commit
a2aab76c22
2 changed files with 6 additions and 2 deletions
|
@ -1076,7 +1076,9 @@ namespace qe {
|
||||||
bool validate_assumptions(model& mdl, expr_ref_vector const& core) {
|
bool validate_assumptions(model& mdl, expr_ref_vector const& core) {
|
||||||
for (expr* c : core) {
|
for (expr* c : core) {
|
||||||
if (!mdl.is_true(c)) {
|
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;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -367,7 +367,9 @@ final_check_status theory_diff_logic<Ext>::final_check_eh() {
|
||||||
for (enode* n : get_context().enodes()) {
|
for (enode* n : get_context().enodes()) {
|
||||||
family_id fid = n->get_owner()->get_family_id();
|
family_id fid = n->get_owner()->get_family_id();
|
||||||
if (fid != 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;
|
return FC_GIVEUP;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue