mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 18:31:49 +00:00
Debug prints
This commit is contained in:
parent
7c924c49f6
commit
0e5434ce0c
|
@ -279,6 +279,8 @@ pob *derivation::create_next_child(model &mdl)
|
|||
m_evars.reset();
|
||||
pt().mbp(vars, m_trans, mdl,
|
||||
true, pt().get_context().use_ground_pob());
|
||||
CTRACE("spacer", !vars.empty(),
|
||||
tout << "Failed to eliminate: " << vars << "\n";);
|
||||
m_evars.append (vars);
|
||||
vars.reset();
|
||||
}
|
||||
|
@ -308,6 +310,8 @@ pob *derivation::create_next_child(model &mdl)
|
|||
vars.append(m_evars);
|
||||
pt().mbp(vars, post, mdl,
|
||||
true, pt().get_context().use_ground_pob());
|
||||
CTRACE("spacer", !vars.empty(),
|
||||
tout << "Failed to eliminate: " << vars << "\n";);
|
||||
//qe::reduce_array_selects (*mev.get_model (), post);
|
||||
}
|
||||
else {
|
||||
|
@ -411,6 +415,8 @@ pob *derivation::create_next_child ()
|
|||
this->pt().mbp(vars, m_trans, *mdl,
|
||||
true, this->pt().get_context().use_ground_pob());
|
||||
// keep track of implicitly quantified variables
|
||||
CTRACE("spacer", !vars.empty(),
|
||||
tout << "Failed to eliminate: " << vars << "\n";);
|
||||
m_evars.append (vars);
|
||||
vars.reset();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue