aboutsummaryrefslogtreecommitdiff
path: root/src/Boundary.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Boundary.h')
-rw-r--r--src/Boundary.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/Boundary.h b/src/Boundary.h
index 99de680..1fbe1ff 100644
--- a/src/Boundary.h
+++ b/src/Boundary.h
@@ -21,18 +21,18 @@ extern "C"
condition: */
typedef CCTK_INT (*phys_bc_fn_ptr)(const CCTK_POINTER, const CCTK_INT,
const CCTK_INT *, const CCTK_INT *,
- const CCTK_INT *);
+ const CCTK_INT *, const CCTK_INT *);
/* prototype for routine registed as providing 'None' boundary condition */
CCTK_INT BndNone(const cGH *GH, CCTK_INT num_vars, CCTK_INT *var_indicies,
- CCTK_INT *faces, CCTK_INT *table_handle);
+ CCTK_INT *faces, CCTK_INT *boundary_widths, CCTK_INT *table_handle);
/* Scalar boundaries */
/* prototype for routine registed as providing 'Scalar' boundary condition */
CCTK_INT BndScalar(const cGH *GH, CCTK_INT num_vars, CCTK_INT *var_indicies,
- CCTK_INT *faces, CCTK_INT *table_handle);
+ CCTK_INT *faces, CCTK_INT *boundary_widths, CCTK_INT *table_handle);
int BndScalarDirGI (const cGH *GH,
int stencil_size,
@@ -77,7 +77,7 @@ int BndScalarVN (const cGH *GH,
/* prototype for routine registed as providing 'Copy' boundary condition */
CCTK_INT BndCopy(const cGH *GH, CCTK_INT num_vars, CCTK_INT *var_indicies,
- CCTK_INT *faces, CCTK_INT *table_handle);
+ CCTK_INT *faces, CCTK_INT *boundary_widths, CCTK_INT *table_handle);
int BndCopyDirGI (const cGH *GH,
int stencil_size,
@@ -121,7 +121,7 @@ int BndCopyVN (const cGH *GH,
/* prototype for routine registed as providing 'Static' boundary condition */
CCTK_INT BndStatic(const cGH *GH, CCTK_INT num_vars, CCTK_INT *var_indicies,
- CCTK_INT *faces, CCTK_INT *table_handle);
+ CCTK_INT *faces, CCTK_INT *boundary_widths, CCTK_INT *table_handle);
int BndStaticDirGI (const cGH *GH,
int stencil_size,
@@ -158,7 +158,8 @@ int BndStaticVN (const cGH *GH,
/* prototype for routine registed as providing 'Radiative' boundary conditions */
CCTK_INT BndRadiative(const cGH *GH, CCTK_INT num_vars, CCTK_INT *var_indicies,
- CCTK_INT *faces, CCTK_INT *table_handle);
+ CCTK_INT *faces, CCTK_INT *boundary_widths,
+ CCTK_INT *table_handle);
int BndRadiativeDirGI (const cGH *GH,
int stencil_size,
@@ -219,7 +220,7 @@ int BndRadiativeVN (const cGH *GH,
/* prototype for routine registed as providing 'Robin' boundary condition */
CCTK_INT BndRobin(const cGH *GH, CCTK_INT num_vars, CCTK_INT *var_indicies,
- CCTK_INT *faces, CCTK_INT *table_handle);
+ CCTK_INT *faces, CCTK_INT *boundary_widths, CCTK_INT *table_handle);
int BndRobinGI (const cGH *GH,
const int *stencil,
@@ -247,7 +248,7 @@ int BndRobinVN (const cGH *GH,
/* prototype for routine registed as providing 'Flat' boundary condition */
CCTK_INT BndFlat(const cGH *GH, CCTK_INT num_vars, CCTK_INT *var_indicies,
- CCTK_INT *faces, int *table_handle);
+ CCTK_INT *faces, CCTK_INT *boundary_widths, CCTK_INT *table_handle);
int BndFlatDirGI (const cGH *GH,
int stencil_size,