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

◆ text_out()

void PathTracker::text_out ( buffer & o) const

Definition at line 2158 of file NAG.cpp.

2159{
2160 o << "path tracker #" << number;
2161 // slpHxt->stats_out(o);
2162 // slpHxH->stats_out(o);
2163
2164 /* int n = slpHxH->num_inputs;
2165 char buf[1000];
2166 complex input[n], output[n*n];
2167 for(int i=0; i<n; i++) {
2168 Nterm* t = H->elem(1,i).get_poly();
2169 input[i] = complex(toBigComplex(C,t->coeff));
2170 }
2171
2172 slpHxH->evaluate(n, input, output);
2173 for(int i=0; i<n*n; i++) {
2174 output[i].sprint(buf);
2175 o << "HxH[" << i << "] = " << buf << newline;
2176 }
2177 slpHxt->evaluate(n, input, output);
2178 for(int i=0; i<n*n; i++) {
2179 output[i].sprint(buf);
2180 o << "Hxt[" << i << "] = " << buf << newline;
2181 }
2182 slpH->text_out(o);
2183 slpHxH->text_out(o);
2184 */
2185}
int number
Definition NAG.hpp:658

References number.