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

◆ extensions_text_out()

void DPoly::extensions_text_out ( buffer & o,
M2_ArrayString names ) const

Definition at line 221 of file dpoly.cpp.

222{
223 for (int i = 0; i < nlevels; i++)
224 {
225 if (extensions[i] != nullptr)
226 {
227 o << newline << " ";
228 elem_text_out(o, i, extensions[i], true, false, false, names);
229 }
230 }
231}
TowerPolynomial * extensions
Definition dpoly.hpp:114
void elem_text_out(buffer &o, int level, const TowerPolynomial f, bool p_one, bool p_plus, bool p_parens, M2_ArrayString names) const
Definition dpoly.cpp:144
int nlevels
Definition dpoly.hpp:113
char newline[]
Definition m2-types.cpp:49

References elem_text_out(), extensions, newline, and nlevels.