aboutsummaryrefslogtreecommitdiff
path: root/src/NoneBoundary.c
diff options
context:
space:
mode:
authorrideout <rideout@6a38eb6e-646e-4a02-a296-d141613ad6c4>2003-02-13 14:15:30 +0000
committerrideout <rideout@6a38eb6e-646e-4a02-a296-d141613ad6c4>2003-02-13 14:15:30 +0000
commitc9c45374ea511044d367b86cf677220862629464 (patch)
tree5fc9fb3e74f71f9f2a1a997e07370ed9aca9c174 /src/NoneBoundary.c
parentb34d42fa292da448b9a16ff5fab86960fac040b4 (diff)
Add faces argument where required.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/Boundary/trunk@195 6a38eb6e-646e-4a02-a296-d141613ad6c4
Diffstat (limited to 'src/NoneBoundary.c')
-rw-r--r--src/NoneBoundary.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/NoneBoundary.c b/src/NoneBoundary.c
index b4706e5..59d1267 100644
--- a/src/NoneBoundary.c
+++ b/src/NoneBoundary.c
@@ -59,6 +59,11 @@ CCTK_FILEVERSION(CactusBase_Boundary_NoneBoundary_c);
@vtype int *
@vio in
@endvar
+ @var faces
+ @vdesc array of set of faces to which to apply the bc
+ @vtype int
+ @vio in
+ @endvar
@var table_handles
@vdesc array of table handles which hold extra arguments
@vtype int
@@ -70,7 +75,8 @@ CCTK_FILEVERSION(CactusBase_Boundary_NoneBoundary_c);
@endreturndesc
@@*/
-int BndNone(const cGH *GH, int num_vars, int *var_indices, int *table_handles)
+int BndNone(const cGH *GH, int num_vars, int *var_indices, int *faces,
+ int *table_handles)
{
#ifdef DEBUG
printf("BndNone(): got passed GH=%p, num_vars=%d, var_indices[0]=%d, table_handles[0]=%d\n", (const void *) GH, num_vars, var_indices[0], table_handles[0]);
@@ -80,6 +86,7 @@ int BndNone(const cGH *GH, int num_vars, int *var_indices, int *table_handles)
GH = GH;
num_vars = num_vars;
var_indices = var_indices;
+ faces = faces;
table_handles = table_handles;
return 0;