673{
675
676 fprintf(fil,
677 "monomial table: %d vars, %d components, %d elements\n",
679 static_cast<int>(_head.size()),
680 this->_count);
681 for (unsigned i = 1; i < _head.size(); i++)
682 {
683 head = this->_head[i];
684 if (head->_next == head) continue;
685 fprintf(fil, " -- component %d --\n", i);
686 for (t = head->_next; t != head; t = t->_next)
687 {
689 }
690 }
691 fprintf(fil, "\n");
692}
void show_mon_term(FILE *fil, mon_term *t) const
MonomialTable::mon_term plus an _coeff slot pointing at the entry's leading ZZ coefficient (or nullpt...