MCPcopy Create free account
hub / github.com/Singular/Singular / view

Method view

libpolys/misc/intvec.cc:134–146  ·  view source on GitHub ↗

debug only

Source from the content-addressed store, hash-verified

132#ifndef SING_NDEBUG
133// debug only
134void intvec::view () const
135{
136 Print ("intvec: {rows: %d, cols: %d, length: %d, Values: \n", rows(), cols(), length());
137
138 for (int i = 0; i < rows(); i++)
139 {
140 Print ("Row[%3d]:", i);
141 for (int j = 0; j < cols(); j++)
142 Print (" %5d", this->operator[]((i)*cols()+j) );
143 PrintLn ();
144 }
145 PrintS ("}\n");
146}
147#endif
148
149void intvec::show(int notmat,int spaces) const

Callers 15

LLLMethod · 0.45
REDMethod · 0.45
SWAPMethod · 0.45
SWAPGMethod · 0.45
gram_schmidtMethod · 0.45
gram_schmidt_MLLLMethod · 0.45
enumerate_nextMethod · 0.45
enumerate_get_nextMethod · 0.45
quadratic_supplementMethod · 0.45
increase_xMethod · 0.45
check_boundMethod · 0.45
scalarproductFunction · 0.45

Calls 7

PrintSFunction · 0.85
rowsFunction · 0.70
colsFunction · 0.70
lengthFunction · 0.70
PrintFunction · 0.50
PrintLnFunction · 0.50
operator[]Method · 0.45

Tested by

no test coverage detected