aboutsummaryrefslogtreecommitdiff
path: root/src/GeneralizedPolynomial-Uniform/common/3d.cube.size3/interp-dxx.compute.c
blob: 5ac4e945ddf4657fd9b68453ad961feed6d69e5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
result =
	coeff_dxx_m1_m1_m1*data_m1_m1_m1
	+ coeff_dxx_0_m1_m1*data_0_m1_m1
	+ coeff_dxx_p1_m1_m1*data_p1_m1_m1
	+ coeff_dxx_m1_0_m1*data_m1_0_m1
	+ coeff_dxx_0_0_m1*data_0_0_m1
	+ coeff_dxx_p1_0_m1*data_p1_0_m1
	+ coeff_dxx_m1_p1_m1*data_m1_p1_m1
	+ coeff_dxx_0_p1_m1*data_0_p1_m1
	+ coeff_dxx_p1_p1_m1*data_p1_p1_m1
	+ coeff_dxx_m1_m1_0*data_m1_m1_0
	+ coeff_dxx_0_m1_0*data_0_m1_0
	+ coeff_dxx_p1_m1_0*data_p1_m1_0
	+ coeff_dxx_m1_0_0*data_m1_0_0
	+ coeff_dxx_0_0_0*data_0_0_0
	+ coeff_dxx_p1_0_0*data_p1_0_0
	+ coeff_dxx_m1_p1_0*data_m1_p1_0
	+ coeff_dxx_0_p1_0*data_0_p1_0
	+ coeff_dxx_p1_p1_0*data_p1_p1_0
	+ coeff_dxx_m1_m1_p1*data_m1_m1_p1
	+ coeff_dxx_0_m1_p1*data_0_m1_p1
	+ coeff_dxx_p1_m1_p1*data_p1_m1_p1
	+ coeff_dxx_m1_0_p1*data_m1_0_p1
	+ coeff_dxx_0_0_p1*data_0_0_p1
	+ coeff_dxx_p1_0_p1*data_p1_0_p1
	+ coeff_dxx_m1_p1_p1*data_m1_p1_p1
	+ coeff_dxx_0_p1_p1*data_0_p1_p1
	+ coeff_dxx_p1_p1_p1*data_p1_p1_p1;