420{
422
423 fprintf(fil,
424 "monomial table: %d vars, %d components, %d elements\n",
426 static_cast<int>(_head.size()),
427 this->_count);
428 for (unsigned i = 1; i < _head.size(); i++)
429 {
430 head = this->_head[i];
431 if (head->_next == head) continue;
432 fprintf(fil, " -- component %d --\n", i);
433 for (t = head->_next; t != head; t = t->_next)
434 {
436 fprintf(fil, " (%d)\n", t->_val);
437 }
438 }
439 fprintf(fil, "\n");
440}
static void exponents_show(FILE *fil, exponents_t exp, int nvars)
Doubly-linked-list node of a MonomialTable's per-component monomial list.