aboutsummaryrefslogtreecommitdiff
path: root/src/GeneralizedPolynomial-Uniform/common/evaluate.h
blob: fa8c252aa67da827270b8ba47d3beb433e411c16 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/* evaluate.h -- evaluate a molecule (as a linear combination of the data) */
/* $Header$ */

/*
 * prerequisite headers:
 *	"cctk.h"
 *	"../InterpLocalUniform.h"
 *	"structs.h"
 */

fp LocalInterp_eval_1d_cube2(const struct coeffs_struct_1d_cube_size2 *coeffs,
			     const struct data_struct_1d_cube_size2 *data);
fp LocalInterp_eval_1d_cube3(const struct coeffs_struct_1d_cube_size3 *coeffs,
			     const struct data_struct_1d_cube_size3 *data);
fp LocalInterp_eval_1d_cube4(const struct coeffs_struct_1d_cube_size4 *coeffs,
			     const struct data_struct_1d_cube_size4 *data);
fp LocalInterp_eval_1d_cube5(const struct coeffs_struct_1d_cube_size5 *coeffs,
			     const struct data_struct_1d_cube_size5 *data);
fp LocalInterp_eval_1d_cube6(const struct coeffs_struct_1d_cube_size6 *coeffs,
			     const struct data_struct_1d_cube_size6 *data);
fp LocalInterp_eval_1d_cube7(const struct coeffs_struct_1d_cube_size7 *coeffs,
			     const struct data_struct_1d_cube_size7 *data);

fp LocalInterp_eval_2d_cube2(const struct coeffs_struct_2d_cube_size2 *coeffs,
			     const struct data_struct_2d_cube_size2 *data);
fp LocalInterp_eval_2d_cube3(const struct coeffs_struct_2d_cube_size3 *coeffs,
			     const struct data_struct_2d_cube_size3 *data);
fp LocalInterp_eval_2d_cube4(const struct coeffs_struct_2d_cube_size4 *coeffs,
			     const struct data_struct_2d_cube_size4 *data);
fp LocalInterp_eval_2d_cube5(const struct coeffs_struct_2d_cube_size5 *coeffs,
			     const struct data_struct_2d_cube_size5 *data);
fp LocalInterp_eval_2d_cube6(const struct coeffs_struct_2d_cube_size6 *coeffs,
			     const struct data_struct_2d_cube_size6 *data);

fp LocalInterp_eval_3d_cube2(const struct coeffs_struct_3d_cube_size2 *coeffs,
			     const struct data_struct_3d_cube_size2 *data);
fp LocalInterp_eval_3d_cube3(const struct coeffs_struct_3d_cube_size3 *coeffs,
			     const struct data_struct_3d_cube_size3 *data);
fp LocalInterp_eval_3d_cube4(const struct coeffs_struct_3d_cube_size4 *coeffs,
			     const struct data_struct_3d_cube_size4 *data);
fp LocalInterp_eval_3d_cube5(const struct coeffs_struct_3d_cube_size5 *coeffs,
			     const struct data_struct_3d_cube_size5 *data);
fp LocalInterp_eval_3d_cube6(const struct coeffs_struct_3d_cube_size6 *coeffs,
			     const struct data_struct_3d_cube_size6 *data);