Macaulay2 Engine
Loading...
Searching...
No Matches

◆ text_out()

template<typename Key>
void ResF4MonomialLookupTableT< Key >::text_out ( buffer & o) const

Definition at line 523 of file res-f4-monlookup.cpp.

524{
525 o << "ResF4MonomialLookupTableT (";
526 o << count / 2 << " entries)\n";
527 int a = 0;
528 for (typename VECTOR(mi_node *)::const_iterator i = mis.begin();
529 i != mis.end();
530 i++)
531 {
532 for (mi_node *p = *i; p != nullptr; p = next(p))
533 {
534 if ((++a) % 15 == 0) o << newline;
535 o << p->key() << " ";
536 }
537 }
538}
mi_node * next(mi_node *p) const
#define VECTOR(T)
Definition newdelete.hpp:78

References count, newline, next(), p, and VECTOR.