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

◆ debugOutputMatrixSparse()

void F4Res::debugOutputMatrixSparse ( std::vector< Row > & rows)
private

Definition at line 726 of file res-f4.cpp.

727{
728 for (ComponentIndex i = 0; i < rows.size(); i++)
729 {
730 std::cout << "coeffs[" << i << "] = ";
731 mRing.vectorArithmetic().displayElementArray(std::cout, rows[i].mCoeffs);
732 std::cout << " comps = ";
733 for (long j = 0; j < rows[i].mComponents.size(); ++j)
734 std::cout << rows[i].mComponents[j] << " ";
735 std::cout << std::endl;
736 }
737}
const ResPolyRing & mRing
Definition res-f4.hpp:161
int ComponentIndex

References mRing.

Referenced by construct(), and makeMatrix().