aboutsummaryrefslogtreecommitdiff
path: root/src/Lagrange-tensor-product/2d.coeffs/2d.cube.order2.smooth0/coeffs-dyy.compute.c
diff options
context:
space:
mode:
authorjthorn <jthorn@0f49ee68-0e4f-0410-9b9c-b2c123ded7ef>2004-05-15 14:11:49 +0000
committerjthorn <jthorn@0f49ee68-0e4f-0410-9b9c-b2c123ded7ef>2004-05-15 14:11:49 +0000
commit527f138c08f3ca615b124860aab14e30353212f9 (patch)
tree39089cfcd43afecacbe8334c3df6a4c115359f0c /src/Lagrange-tensor-product/2d.coeffs/2d.cube.order2.smooth0/coeffs-dyy.compute.c
parent214f8eae27c0c862f2b2ca17b683540a0c3d3662 (diff)
fix a nasty bug which caused the 2D order=3 Lagrange interpolators
to be only first accurate :( :( (it was a typo in the maple script generating the coefficients) (I'm still investigating why my interpolator tests didn't spot this before) git-svn-id: http://svn.aei.mpg.de/numrel/AEIThorns/AEILocalInterp/trunk@18 0f49ee68-0e4f-0410-9b9c-b2c123ded7ef
Diffstat (limited to 'src/Lagrange-tensor-product/2d.coeffs/2d.cube.order2.smooth0/coeffs-dyy.compute.c')
-rw-r--r--src/Lagrange-tensor-product/2d.coeffs/2d.cube.order2.smooth0/coeffs-dyy.compute.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Lagrange-tensor-product/2d.coeffs/2d.cube.order2.smooth0/coeffs-dyy.compute.c b/src/Lagrange-tensor-product/2d.coeffs/2d.cube.order2.smooth0/coeffs-dyy.compute.c
index 9a941cd..dfbebbe 100644
--- a/src/Lagrange-tensor-product/2d.coeffs/2d.cube.order2.smooth0/coeffs-dyy.compute.c
+++ b/src/Lagrange-tensor-product/2d.coeffs/2d.cube.order2.smooth0/coeffs-dyy.compute.c
@@ -7,15 +7,15 @@ fp t75;
t80 = x*x;
t79 = RATIONAL(1.0,2.0);
t78 = t79*t80;
- t77 = RATIONAL(1.0,1.0)-t80;
+ t77 = -t80+RATIONAL(1.0,1.0);
t76 = t78+RATIONAL(-1.0,2.0)*x;
- t75 = t79*x+t78;
+ t75 = t78+t79*x;
coeffs_dyy->coeff_m1_m1 = t76;
coeffs_dyy->coeff_0_m1 = t77;
coeffs_dyy->coeff_p1_m1 = t75;
coeffs_dyy->coeff_m1_0 = -t80+x;
- coeffs_dyy->coeff_0_0 = RATIONAL(2.0,1.0)*t80+RATIONAL(-2.0,1.0);
- coeffs_dyy->coeff_p1_0 = -x-t80;
+ coeffs_dyy->coeff_0_0 = RATIONAL(-2.0,1.0)+RATIONAL(2.0,1.0)*t80;
+ coeffs_dyy->coeff_p1_0 = -t80-x;
coeffs_dyy->coeff_m1_p1 = t76;
coeffs_dyy->coeff_0_p1 = t77;
coeffs_dyy->coeff_p1_p1 = t75;