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

◆ dump()

auto OverlapTable::dump ( std::ostream & ostr,
bool outputDeques ) const->std::ostream &

Definition at line 88 of file OverlapTable.cpp.

89{
90 ostr << "OverlapTable with " << size() << " elements:" << std::endl;
91 for (auto i : mOverlapMap)
92 {
93 if (!outputDeques)
94 ostr << " Degree [" << i.first.first
95 << "," << i.first.second << "] # = " << i.second.size() << std::endl;
96 else
97 ostr << " Degree [" << i.first.first
98 << "," << i.first.second << "] # = " << i.second << std::endl;
99 }
100 ostr << std::endl;
101 return ostr;
102}
auto size() const -> size_t
OverlapMap mOverlapMap

References mOverlapMap, and size().

Referenced by operator<<.