14 Apr
2001
14 Apr
'01
8:01 p.m.
A couple of hours ago, I wrote: [...]
Btw, I have noticed that you use frequently
for (int n=this->ldegree(s); n<=this->degree(s); n++)
instead of more efficient
for (int n=this->ldegree(s), m=this->degree(s); n<=m; ++n)
that saves repeated calling of the degree() method.
Indeed, it does. But where else besides in basic::collect() do you see occurences of this?
-- Richard Kreckel <Richard.Kreckel@Uni-Mainz.DE> <http://wwwthep.physik.uni-mainz.de/~kreckel/>