mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 03:45:51 +00:00
simplify nex_creator
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
eb3a5056b8
commit
244205f530
2 changed files with 19 additions and 14 deletions
|
@ -330,6 +330,11 @@ public:
|
|||
return degree;
|
||||
}
|
||||
|
||||
const ptr_vector<nex>::const_iterator begin() const { return m_children.begin(); }
|
||||
const ptr_vector<nex>::const_iterator end() const { return m_children.end(); }
|
||||
ptr_vector<nex>::iterator begin() { return m_children.begin(); }
|
||||
ptr_vector<nex>::iterator end() { return m_children.end(); }
|
||||
|
||||
void add_child(nex* e) { m_children.push_back(e); }
|
||||
#ifdef Z3DEBUG
|
||||
virtual void sort() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue