3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-12 02:04:43 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-03-15 12:45:16 -07:00 committed by Lev Nachmanson
parent e7960e63da
commit b41b83cd63
5 changed files with 8 additions and 4 deletions

View file

@ -515,6 +515,7 @@ namespace smt {
TRACE("add_eq", tout << "assigning: #" << n1->get_owner_id() << " = #" << n2->get_owner_id() << "\n";);
TRACE("add_eq_detail", tout << "assigning\n" << enode_pp(n1, *this) << "\n" << enode_pp(n2, *this) << "\n";
tout << "kind: " << js.get_kind() << "\n";);
SASSERT(m.get_sort(n1->get_owner()) == m.get_sort(n2->get_owner()));
m_stats.m_num_add_eq++;
enode * r1 = n1->get_root();
@ -4469,8 +4470,7 @@ namespace smt {
if (fcs == FC_DONE) {
reset_model();
}
return fcs == FC_DONE;
return false;
}
void context::mk_proto_model() {