mirror of
https://github.com/Z3Prover/z3
synced 2025-04-30 04:15:51 +00:00
remove '#include <iostream>' from headers and from unneeded places
It's harmful to have iostream everywhere as it injects functions in the compiled files
This commit is contained in:
parent
70bcf0b51d
commit
73a24ca0a9
90 changed files with 99 additions and 95 deletions
|
@ -1624,7 +1624,7 @@ namespace pb {
|
|||
CTRACE("ba", coeff == 0, display(tout << l << " coeff: " << coeff << "\n", p, true););
|
||||
|
||||
if (_debug_conflict) {
|
||||
std::cout << "coeff " << coeff << "\n";
|
||||
IF_VERBOSE(0, verbose_stream() << "coeff " << coeff << "\n";);
|
||||
}
|
||||
|
||||
SASSERT(coeff > 0);
|
||||
|
@ -2256,7 +2256,7 @@ namespace pb {
|
|||
SASSERT(c.lit() == sat::null_literal || c.is_watched(*this, c.lit()));
|
||||
|
||||
// pre-condition is that the literals, except c.lit(), in c are unwatched.
|
||||
if (c.id() == _bad_id) std::cout << "recompile: " << c << "\n";
|
||||
//if (c.id() == _bad_id) std::cout << "recompile: " << c << "\n";
|
||||
m_weights.resize(2*s().num_vars(), 0);
|
||||
for (literal l : c) {
|
||||
++m_weights[l.index()];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue