aboutsummaryrefslogtreecommitdiff
path: root/src/get_coeffs2.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/get_coeffs2.c')
-rw-r--r--src/get_coeffs2.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/get_coeffs2.c b/src/get_coeffs2.c
index 9d2a0ea..9d13dec 100644
--- a/src/get_coeffs2.c
+++ b/src/get_coeffs2.c
@@ -39,6 +39,20 @@ void DiffCoeff2 ( const CCTK_POINTER_TO_CONST cctkGH_, const CCTK_INT dir,
CCTK_INT *imin,
CCTK_INT *imax,
CCTK_REAL *q);
+ void CCTK_FCALL CCTK_FNAME(set_coeff2_4_2_opt)(const CCTK_INT *nsize,
+ const CCTK_INT *loc_order,
+ const CCTK_INT *bb,
+ const CCTK_INT *gsize,
+ CCTK_INT *imin,
+ CCTK_INT *imax,
+ CCTK_REAL *q);
+ void CCTK_FCALL CCTK_FNAME(set_coeff2_6_3)(const CCTK_INT *nsize,
+ const CCTK_INT *loc_order,
+ const CCTK_INT *bb,
+ const CCTK_INT *gsize,
+ CCTK_INT *imin,
+ CCTK_INT *imax,
+ CCTK_REAL *q);
ni = cctk_lsh[0]; nj = cctk_lsh[1]; nk = cctk_lsh[2];
@@ -89,6 +103,10 @@ void DiffCoeff2 ( const CCTK_POINTER_TO_CONST cctkGH_, const CCTK_INT dir,
CCTK_FNAME(set_coeff2_4_2)(&nsize,&loc_order,bb,&gsize,imin,imax,q);
break;
}
+ case 6: {
+ CCTK_FNAME(set_coeff2_6_3)(&nsize,&loc_order,bb,&gsize,imin,imax,q);
+ break;
+ }
default:
CCTK_WARN (0, "Unknown stencil specified");
}
@@ -102,6 +120,10 @@ void DiffCoeff2 ( const CCTK_POINTER_TO_CONST cctkGH_, const CCTK_INT dir,
CCTK_FNAME(set_coeff2_4_2)(&nsize,&loc_order,bb,&gsize,imin,imax,q);
break;
}
+ case 6: {
+ CCTK_FNAME(set_coeff2_6_3)(&nsize,&loc_order,bb,&gsize,imin,imax,q);
+ break;
+ }
default:
CCTK_WARN (0, "Unknown stencil specified");
}