3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-25 10:05:32 +00:00
Nikolaj Bjorner 2021-07-18 10:44:30 -07:00
parent 750c06e258
commit e8bc9f3469
4 changed files with 10 additions and 2 deletions

View file

@ -326,6 +326,7 @@ namespace euf {
void collect_statistics(statistics& st) const;
unsigned num_scopes() const { return m_scopes.size() + m_num_scopes; }
unsigned num_nodes() const { return m_nodes.size(); }
};
inline std::ostream& operator<<(std::ostream& out, egraph const& g) { return g.display(out); }