aboutsummaryrefslogtreecommitdiff
path: root/src/GeneralizedPolynomial-Uniform/Hermite/1d.coeffs/1d.cube.order3/coeff-dx.compute.c
blob: 4300a83feb0cd73e09a811f4d3bd1354eeec5a10 (plain)
1
2
3
4
5
6
7
8
9
10
11
fp t12;
      t12 = x*x;
      coeff_dx_m2 = RATIONAL(-1.0,3.0)*x+RATIONAL(1.0,12.0)+RATIONAL(1.0,4.0)*
t12;
      coeff_dx_m1 = RATIONAL(-2.0,3.0)+RATIONAL(5.0,2.0)*x+RATIONAL(-7.0,4.0)*
t12;
      coeff_dx_0 = RATIONAL(-14.0,3.0)*x+RATIONAL(4.0,1.0)*t12;
      coeff_dx_p1 = RATIONAL(-4.0,1.0)*t12+RATIONAL(10.0,3.0)*x+RATIONAL(2.0,
3.0);
      coeff_dx_p2 = RATIONAL(7.0,4.0)*t12+RATIONAL(-1.0,12.0)-x;
      coeff_dx_p3 = RATIONAL(1.0,6.0)*x+RATIONAL(-1.0,4.0)*t12;