diff --git a/Grid/algorithms/approx/Chebyshev.h b/Grid/algorithms/approx/Chebyshev.h index 74789ead..133db2b4 100644 --- a/Grid/algorithms/approx/Chebyshev.h +++ b/Grid/algorithms/approx/Chebyshev.h @@ -252,20 +252,20 @@ public: RealD xscale = 2.0/(hi-lo); RealD mscale = -(hi+lo)/(hi-lo); Linop.HermOp(T0,y); - T1=y*xscale+in*mscale; + axpby(T1,xscale,mscale,y,in); // sum = .5 c[0] T0 + c[1] T1 - out = (0.5*Coeffs[0])*T0 + Coeffs[1]*T1; + // out = ()*T0 + Coeffs[1]*T1; + axpby(out,0.5*Coeffs[0],Coeffs[1],T0,T1); for(int n=2;n