aboutsummaryrefslogtreecommitdiff
path: root/src/common/evaluate.h
blob: 4e2046aeca2e0b0edc022fe14629823c7e32cdd5 (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 AEILocalInterp_eval_1dcube2(const struct coeffs_struct_1d_cube_size2 *coeffs,
			       const struct data_struct_1d_cube_size2 *data);
fp AEILocalInterp_eval_1dcube3(const struct coeffs_struct_1d_cube_size3 *coeffs,
			       const struct data_struct_1d_cube_size3 *data);
fp AEILocalInterp_eval_1dcube4(const struct coeffs_struct_1d_cube_size4 *coeffs,
			       const struct data_struct_1d_cube_size4 *data);
fp AEILocalInterp_eval_1dcube5(const struct coeffs_struct_1d_cube_size5 *coeffs,
			       const struct data_struct_1d_cube_size5 *data);
fp AEILocalInterp_eval_1dcube6(const struct coeffs_struct_1d_cube_size6 *coeffs,
			       const struct data_struct_1d_cube_size6 *data);
fp AEILocalInterp_eval_1dcube7(const struct coeffs_struct_1d_cube_size7 *coeffs,
			       const struct data_struct_1d_cube_size7 *data);

fp AEILocalInterp_eval_2dcube2(const struct coeffs_struct_2d_cube_size2 *coeffs,
			       const struct data_struct_2d_cube_size2 *data);
fp AEILocalInterp_eval_2dcube3(const struct coeffs_struct_2d_cube_size3 *coeffs,
			       const struct data_struct_2d_cube_size3 *data);
fp AEILocalInterp_eval_2dcube4(const struct coeffs_struct_2d_cube_size4 *coeffs,
			       const struct data_struct_2d_cube_size4 *data);
fp AEILocalInterp_eval_2dcube5(const struct coeffs_struct_2d_cube_size5 *coeffs,
			       const struct data_struct_2d_cube_size5 *data);
fp AEILocalInterp_eval_2dcube6(const struct coeffs_struct_2d_cube_size6 *coeffs,
			       const struct data_struct_2d_cube_size6 *data);

fp AEILocalInterp_eval_3dcube2(const struct coeffs_struct_3d_cube_size2 *coeffs,
			       const struct data_struct_3d_cube_size2 *data);
fp AEILocalInterp_eval_3dcube3(const struct coeffs_struct_3d_cube_size3 *coeffs,
			       const struct data_struct_3d_cube_size3 *data);
fp AEILocalInterp_eval_3dcube4(const struct coeffs_struct_3d_cube_size4 *coeffs,
			       const struct data_struct_3d_cube_size4 *data);
fp AEILocalInterp_eval_3dcube5(const struct coeffs_struct_3d_cube_size5 *coeffs,
			       const struct data_struct_3d_cube_size5 *data);
fp AEILocalInterp_eval_3dcube6(const struct coeffs_struct_3d_cube_size6 *coeffs,
			       const struct data_struct_3d_cube_size6 *data);