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

◆ text_out()

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

Definition at line 505 of file f4-monlookup.cpp.

506{
507 o << "F4MonomialLookupTableT (";
508 o << count << " entries)\n";
509 int a = 0;
510 for (auto& i : mis)
511 {
512 for (mi_node *p = i; p != nullptr; p = next(p))
513 {
514 if ((++a) % 15 == 0) o << newline;
515 o << p->key() << " ";
516 }
517 }
518}
mi_node * next(mi_node *p) const
std::vector< mi_node * > mis

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