mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 11:55:51 +00:00
debug emons
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
e28e83a25e
commit
884a2628de
4 changed files with 22 additions and 4 deletions
|
@ -161,6 +161,9 @@ namespace nla {
|
|||
|
||||
void emonomials::remove_cg(lpvar v) {
|
||||
cell* c = m_use_lists[v].m_head;
|
||||
if (c == nullptr) {
|
||||
return;
|
||||
}
|
||||
cell* first = c;
|
||||
inc_visited();
|
||||
do {
|
||||
|
@ -206,6 +209,10 @@ namespace nla {
|
|||
*/
|
||||
void emonomials::insert_cg(lpvar v) {
|
||||
cell* c = m_use_lists[v].m_head;
|
||||
if (c == nullptr) {
|
||||
return;
|
||||
}
|
||||
|
||||
cell* first = c;
|
||||
inc_visited();
|
||||
do {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue