aboutsummaryrefslogtreecommitdiff
path: root/src/GeneralizedPolynomial-Uniform/Lagrange/1d.coeffs/1d.cube.order3.smooth0
diff options
context:
space:
mode:
Diffstat (limited to 'src/GeneralizedPolynomial-Uniform/Lagrange/1d.coeffs/1d.cube.order3.smooth0')
-rw-r--r--src/GeneralizedPolynomial-Uniform/Lagrange/1d.coeffs/1d.cube.order3.smooth0/coeff-I.compute.c16
-rw-r--r--src/GeneralizedPolynomial-Uniform/Lagrange/1d.coeffs/1d.cube.order3.smooth0/coeff-dx.compute.c8
-rw-r--r--src/GeneralizedPolynomial-Uniform/Lagrange/1d.coeffs/1d.cube.order3.smooth0/coeff-dxx.compute.c6
-rw-r--r--src/GeneralizedPolynomial-Uniform/Lagrange/1d.coeffs/1d.cube.order3.smooth0/coeffs-I.compute.c16
-rw-r--r--src/GeneralizedPolynomial-Uniform/Lagrange/1d.coeffs/1d.cube.order3.smooth0/coeffs-dx.compute.c8
-rw-r--r--src/GeneralizedPolynomial-Uniform/Lagrange/1d.coeffs/1d.cube.order3.smooth0/coeffs-dxx.compute.c6
6 files changed, 30 insertions, 30 deletions
diff --git a/src/GeneralizedPolynomial-Uniform/Lagrange/1d.coeffs/1d.cube.order3.smooth0/coeff-I.compute.c b/src/GeneralizedPolynomial-Uniform/Lagrange/1d.coeffs/1d.cube.order3.smooth0/coeff-I.compute.c
deleted file mode 100644
index 2df6cd1..0000000
--- a/src/GeneralizedPolynomial-Uniform/Lagrange/1d.coeffs/1d.cube.order3.smooth0/coeff-I.compute.c
+++ /dev/null
@@ -1,16 +0,0 @@
-fp t10,
- t9,
- t8,
- t7,
- t6,
- t5;
- t10 = x*x;
- t9 = x*t10;
- t8 = RATIONAL(-1.0,2.0);
- t7 = RATIONAL(1.0,2.0);
- t6 = RATIONAL(-1.0,6.0);
- t5 = t7*t10;
- coeff_I_m1 = RATIONAL(-1.0,3.0)*x+t5+t6*t9;
- coeff_I_0 = RATIONAL(1.0,1.0)+t8*x-t10+t7*t9;
- coeff_I_p1 = x+t5+t8*t9;
- coeff_I_p2 = t6*x+RATIONAL(1.0,6.0)*t9;
diff --git a/src/GeneralizedPolynomial-Uniform/Lagrange/1d.coeffs/1d.cube.order3.smooth0/coeff-dx.compute.c b/src/GeneralizedPolynomial-Uniform/Lagrange/1d.coeffs/1d.cube.order3.smooth0/coeff-dx.compute.c
deleted file mode 100644
index 4306fc4..0000000
--- a/src/GeneralizedPolynomial-Uniform/Lagrange/1d.coeffs/1d.cube.order3.smooth0/coeff-dx.compute.c
+++ /dev/null
@@ -1,8 +0,0 @@
-fp t13,
- t12;
- t13 = x*x;
- t12 = RATIONAL(-1.0,2.0);
- coeff_dx_m1 = x+t12*t13+RATIONAL(-1.0,3.0);
- coeff_dx_0 = t12+RATIONAL(-2.0,1.0)*x+RATIONAL(3.0,2.0)*t13;
- coeff_dx_p1 = RATIONAL(-3.0,2.0)*t13+RATIONAL(1.0,1.0)+x;
- coeff_dx_p2 = RATIONAL(1.0,2.0)*t13+RATIONAL(-1.0,6.0);
diff --git a/src/GeneralizedPolynomial-Uniform/Lagrange/1d.coeffs/1d.cube.order3.smooth0/coeff-dxx.compute.c b/src/GeneralizedPolynomial-Uniform/Lagrange/1d.coeffs/1d.cube.order3.smooth0/coeff-dxx.compute.c
deleted file mode 100644
index d5e199b..0000000
--- a/src/GeneralizedPolynomial-Uniform/Lagrange/1d.coeffs/1d.cube.order3.smooth0/coeff-dxx.compute.c
+++ /dev/null
@@ -1,6 +0,0 @@
-fp t14;
- t14 = RATIONAL(1.0,1.0);
- coeff_dxx_m1 = t14-x;
- coeff_dxx_0 = RATIONAL(-2.0,1.0)+RATIONAL(3.0,1.0)*x;
- coeff_dxx_p1 = RATIONAL(-3.0,1.0)*x+t14;
- coeff_dxx_p2 = x;
diff --git a/src/GeneralizedPolynomial-Uniform/Lagrange/1d.coeffs/1d.cube.order3.smooth0/coeffs-I.compute.c b/src/GeneralizedPolynomial-Uniform/Lagrange/1d.coeffs/1d.cube.order3.smooth0/coeffs-I.compute.c
new file mode 100644
index 0000000..6ee0b5a
--- /dev/null
+++ b/src/GeneralizedPolynomial-Uniform/Lagrange/1d.coeffs/1d.cube.order3.smooth0/coeffs-I.compute.c
@@ -0,0 +1,16 @@
+fp t10;
+fp t9;
+fp t8;
+fp t7;
+fp t6;
+fp t5;
+ t10 = x*x;
+ t9 = x*t10;
+ t8 = RATIONAL(-1.0,2.0);
+ t7 = RATIONAL(1.0,2.0);
+ t6 = RATIONAL(-1.0,6.0);
+ t5 = t7*t10;
+ coeffs_I->coeff_m1 = RATIONAL(-1.0,3.0)*x+t5+t6*t9;
+ coeffs_I->coeff_0 = RATIONAL(1.0,1.0)+t8*x-t10+t7*t9;
+ coeffs_I->coeff_p1 = x+t5+t8*t9;
+ coeffs_I->coeff_p2 = t6*x+RATIONAL(1.0,6.0)*t9;
diff --git a/src/GeneralizedPolynomial-Uniform/Lagrange/1d.coeffs/1d.cube.order3.smooth0/coeffs-dx.compute.c b/src/GeneralizedPolynomial-Uniform/Lagrange/1d.coeffs/1d.cube.order3.smooth0/coeffs-dx.compute.c
new file mode 100644
index 0000000..1cf3fc6
--- /dev/null
+++ b/src/GeneralizedPolynomial-Uniform/Lagrange/1d.coeffs/1d.cube.order3.smooth0/coeffs-dx.compute.c
@@ -0,0 +1,8 @@
+fp t13;
+fp t12;
+ t13 = x*x;
+ t12 = RATIONAL(-1.0,2.0);
+ coeffs_dx->coeff_m1 = x+t12*t13+RATIONAL(-1.0,3.0);
+ coeffs_dx->coeff_0 = t12+RATIONAL(-2.0,1.0)*x+RATIONAL(3.0,2.0)*t13;
+ coeffs_dx->coeff_p1 = x+RATIONAL(1.0,1.0)+RATIONAL(-3.0,2.0)*t13;
+ coeffs_dx->coeff_p2 = RATIONAL(1.0,2.0)*t13+RATIONAL(-1.0,6.0);
diff --git a/src/GeneralizedPolynomial-Uniform/Lagrange/1d.coeffs/1d.cube.order3.smooth0/coeffs-dxx.compute.c b/src/GeneralizedPolynomial-Uniform/Lagrange/1d.coeffs/1d.cube.order3.smooth0/coeffs-dxx.compute.c
new file mode 100644
index 0000000..470882c
--- /dev/null
+++ b/src/GeneralizedPolynomial-Uniform/Lagrange/1d.coeffs/1d.cube.order3.smooth0/coeffs-dxx.compute.c
@@ -0,0 +1,6 @@
+fp t14;
+ t14 = RATIONAL(1.0,1.0);
+ coeffs_dxx->coeff_m1 = t14-x;
+ coeffs_dxx->coeff_0 = RATIONAL(-2.0,1.0)+RATIONAL(3.0,1.0)*x;
+ coeffs_dxx->coeff_p1 = t14+RATIONAL(-3.0,1.0)*x;
+ coeffs_dxx->coeff_p2 = x;