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

◆ operator<<() [1/2]

std::ostream & operator<< ( std::ostream & o,
const std::vector< Overlap > & val )

Definition at line 628 of file NCGroebnerTest.cpp.

629{
630 int count = 0;
631 for (auto a : val)
632 {
633 o << "[" << std::get<0>(a) << ","
634 << std::get<1>(a) << ","
635 << std::get<2>(a) << "]";
636 o << " ";
637 count++;
638 if (count % 10 == 0) o << std::endl;
639 }
640 o << std::endl;
641 return o;
642}