3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 11:55:51 +00:00

port Grobner

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-10-22 11:48:32 -07:00
parent c2235ef96f
commit 5a2ce93ed7
3 changed files with 68 additions and 11 deletions

View file

@ -224,6 +224,10 @@ public:
add_child_in_power(e, 1);
}
void add_child_in_power(nex_pow& p) {
add_child_in_power(p.e(), p.pow());
}
const nex_pow& operator[](unsigned j) const { return m_children[j]; }
nex_pow& operator[](unsigned j) { return m_children[j]; }