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

◆ operator<<() [2/2]

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

Definition at line 644 of file NCGroebnerTest.cpp.

645{
646 int count = 0;
647 for (auto a : val)
648 {
649 o << "[" << std::get<0>(a) << ","
650 << std::get<1>(a) << "]";
651 o << " ";
652 count++;
653 if (count % 10 == 0) o << std::endl;
654 }
655 o << std::endl;
656 return o;
657}