3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 01:24:08 +00:00

remove verbose logging

This commit is contained in:
Nikolaj Bjorner 2023-11-07 10:53:15 +01:00
parent e86eae27e6
commit 2d1f4d5d93

View file

@ -437,17 +437,11 @@ namespace smt {
*/
template<typename Ext>
bool theory_arith<Ext>::is_gomory_cut_target(row const & r) {
TRACE("gomory_cut", r.display(tout););
theory_var b = r.get_base_var();
for (auto& e : r) {
// All non base variables must be at their bounds and assigned to rationals (that is, infinitesimals are not allowed).
if (!e.is_dead() && e.m_var != b && (!at_bound(e.m_var) || !get_value(e.m_var).is_rational())) {
TRACE("gomory_cut", tout << "row is not gomory cut target:\n";
display_var(tout, e.m_var);
tout << "at_bound: " << at_bound(e.m_var) << "\n";
tout << "infinitesimal: " << !get_value(e.m_var).is_rational() << "\n";);
if (!e.is_dead() && e.m_var != b && (!at_bound(e.m_var) || !get_value(e.m_var).is_rational()))
return false;
}
}
return true;
}