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

◆ show()

void gbvectorHeap::show ( ) const

Definition at line 1629 of file gbring.cpp.

1630{
1631 for (int i = 0; i <= top_of_heap; i++)
1632 {
1633 if (heap[i] == nullptr) continue;
1634 printf("%d ", i);
1635 dgbvec(GR, heap[i]);
1636 printf("\n");
1637 }
1638}
gbvector * heap[GEOHEAP_SIZE]
Definition gbring.hpp:693
int top_of_heap
Definition gbring.hpp:695
GBRing * GR
Definition gbring.hpp:690
void dgbvec(const GBRing *R, gbvector *v)
Definition debug.cpp:95

References dgbvec(), GR, heap, and top_of_heap.