diff --git a/src/math/lp/lp_bound_propagator.h b/src/math/lp/lp_bound_propagator.h index e04a6bd91..ba826d982 100644 --- a/src/math/lp/lp_bound_propagator.h +++ b/src/math/lp/lp_bound_propagator.h @@ -60,9 +60,9 @@ class lp_bound_propagator { const ptr_vector & children() const { return m_children; } std::ostream& print(std::ostream & out) const { out << "r = " << m_row << ", c = " << m_column << ", P = {"; - if (m_parent) { tout << "(" << m_parent->row() << ", " << m_parent->column() << ")";} - else { tout << "null"; } - tout << "} , lvl = " << m_level << (neg()? " -":" +"); + if (m_parent) { out << "(" << m_parent->row() << ", " << m_parent->column() << ")";} + else { out << "null"; } + out << "} , lvl = " << m_level << (neg()? " -":" +"); return out; } bool operator==(const vertex& o) const {