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

◆ text_out()

void SLProgram::text_out ( buffer & o) const

Definition at line 67 of file SLP.cpp.

68{
69 o << "SLProgram (" << newline;
70 o << " consts+vars: " << inputCounter << newline;
71 o << " noninput nodes: " << mNodes.size() << newline;
72 o << " output nodes: " << mOutputPositions.size() << newline;
73 o << " )" << newline;
74}
int inputCounter
Definition SLP-defs.hpp:107
std::vector< GATE_TYPE > mNodes
Definition SLP-defs.hpp:95
std::vector< GATE_POSITION > mOutputPositions
Definition SLP-defs.hpp:103
char newline[]
Definition m2-types.cpp:49

References inputCounter, mNodes, mOutputPositions, and newline.

Referenced by rawSLProgramToString().