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

◆ debug_out_list()

void DMatLinAlg< M2::ARingZZpFlint >::debug_out_list ( ElementType * x,
size_t len )
inlineprivate

Definition at line 117 of file dmat-lu.hpp.

118 {
119 buffer o;
120 o << "[ ";
121 for (size_t i = 0; i < len; i++)
122 {
123 ring().elem_text_out(o, x[i], true, false);
124 o << " ";
125 }
126 o << "]" << newline;
127 std::cout << o.str();
128 }
const M2::ARingZZpFlint & ring() const
Definition dmat-lu.hpp:107
void elem_text_out(buffer &o, ElementType a, bool p_one=true, bool p_plus=false, bool p_parens=false) const