3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00

fix the build

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-09-22 13:01:20 -07:00
parent b01fc9816f
commit dfb862db7c
3 changed files with 50 additions and 50 deletions

View file

@ -184,7 +184,7 @@ public:
const ptr_vector<nex>* children_ptr() const { return &m_children;}
ptr_vector<nex>* children_ptr() { return &m_children;}
// A monomial is 'pure' if does not have a numeric coefficient.
bool is_pure_monomial() { return size() == 0 || (!m_children[0]->is_scalar()); }
bool is_pure_monomial() const { return size() == 0 || (!m_children[0]->is_scalar()); }
std::ostream & print(std::ostream& out) const {
bool first = true;
for (const nex* v : m_children) {