aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorallen <allen@6a38eb6e-646e-4a02-a296-d141613ad6c4>2000-07-22 07:28:50 +0000
committerallen <allen@6a38eb6e-646e-4a02-a296-d141613ad6c4>2000-07-22 07:28:50 +0000
commit81c3afb6ab827f0278a24e30f6acebf65f2caa02 (patch)
tree9aad46e88bd2993c9bc56f0b0963e6380cb044fe /src
parentbc1429668a1ab0963d347852744c4432f7c2d774 (diff)
Changed the power of the robin boundary conditions from a CCTK_INT to a int
git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/Boundary/trunk@119 6a38eb6e-646e-4a02-a296-d141613ad6c4
Diffstat (limited to 'src')
-rw-r--r--src/RobinBoundaryWrappers.c44
1 files changed, 22 insertions, 22 deletions
diff --git a/src/RobinBoundaryWrappers.c b/src/RobinBoundaryWrappers.c
index c2f4638..4bc2c99 100644
--- a/src/RobinBoundaryWrappers.c
+++ b/src/RobinBoundaryWrappers.c
@@ -28,37 +28,37 @@ int BndApplyRobin3Di(cGH *GH,
CCTK_REAL *var,
CCTK_REAL *r,
CCTK_REAL finf,
- CCTK_INT npow);
+ int npow);
int ApplyBndRobin(cGH *GH,
int *sw,
CCTK_REAL finf,
- CCTK_INT npow,
+ int npow,
int first_var,
int num_vars);
int BndRobinGI(cGH *GH,
int *stencil,
CCTK_REAL finf,
- CCTK_INT npow,
+ int npow,
int gi);
int BndRobinGN(cGH *GH,
int *sw,
CCTK_REAL finf,
- CCTK_INT npow,
+ int npow,
const char *gn);
int BndRobinVI(cGH *GH,
int *stencil,
CCTK_REAL finf,
- CCTK_INT npow,
+ int npow,
int vi);
int BndRobinVN(cGH *GH,
int *stencil,
CCTK_REAL finf,
- CCTK_INT npow,
+ int npow,
const char *vn);
@@ -82,7 +82,7 @@ int BndRobinVN(cGH *GH,
int BndRobinGI(cGH *GH,
int *stencil,
CCTK_REAL finf,
- CCTK_INT npow,
+ int npow,
int gi)
{
int numvars, first_vi;
@@ -95,7 +95,7 @@ int BndRobinGI(cGH *GH,
void CCTK_FCALL CCTK_FNAME(BndRobinGI)
(int *ierr, cGH *GH, int *stencil,
- CCTK_REAL *finf, CCTK_INT *npow, int *gi)
+ CCTK_REAL *finf, int *npow, int *gi)
{
*ierr = BndRobinGI(GH,stencil, *finf, *npow, *gi);
return;
@@ -117,7 +117,7 @@ void CCTK_FCALL CCTK_FNAME(BndRobinGI)
int BndRobinGN(cGH *GH,
int *sw,
CCTK_REAL finf,
- CCTK_INT npow,
+ int npow,
const char *gn)
{
int retval;
@@ -139,7 +139,7 @@ int BndRobinGN(cGH *GH,
void CCTK_FCALL CCTK_FNAME(BndRobinGN)
(int *ierr, cGH *GH, int *stencil,
- CCTK_REAL *finf, CCTK_INT *npow, ONE_FORTSTRING_ARG)
+ CCTK_REAL *finf, int *npow, ONE_FORTSTRING_ARG)
{
ONE_FORTSTRING_CREATE(gn)
*ierr = BndRobinVN(GH, stencil, *finf, *npow, gn);
@@ -164,7 +164,7 @@ void CCTK_FCALL CCTK_FNAME(BndRobinGN)
int BndRobinVI(cGH *GH,
int *stencil,
CCTK_REAL finf,
- CCTK_INT npow,
+ int npow,
int vi)
{
return(ApplyBndRobin(GH, stencil, finf, npow, vi, 1));
@@ -172,7 +172,7 @@ int BndRobinVI(cGH *GH,
void CCTK_FCALL CCTK_FNAME(BndRobinVI)
(int *ierr, cGH *GH, int *stencil,
- CCTK_REAL *finf, CCTK_INT *npow, int *vi)
+ CCTK_REAL *finf, int *npow, int *vi)
{
*ierr = BndRobinVI(GH, stencil, *finf, *npow, *vi);
return;
@@ -195,7 +195,7 @@ void CCTK_FCALL CCTK_FNAME(BndRobinVI)
int BndRobinVN(cGH *GH,
int *stencil,
CCTK_REAL finf,
- CCTK_INT npow,
+ int npow,
const char *vn)
{
int vi;
@@ -217,7 +217,7 @@ int BndRobinVN(cGH *GH,
void CCTK_FCALL CCTK_FNAME(BndRobinVN)
(int *ierr, cGH *GH, int *stencil,
- CCTK_REAL *finf, CCTK_INT *npow, ONE_FORTSTRING_ARG)
+ CCTK_REAL *finf, int *npow, ONE_FORTSTRING_ARG)
{
ONE_FORTSTRING_CREATE(vn)
*ierr = BndRobinVN(GH, stencil, *finf, *npow, vn);
@@ -245,7 +245,7 @@ void CCTK_FCALL CCTK_FNAME(BndRobinVN)
int ApplyBndRobin(cGH *GH,
int *sw,
CCTK_REAL finf,
- CCTK_INT npow,
+ int npow,
int first_var,
int num_vars)
{
@@ -348,7 +348,7 @@ int RobinBCVarI(cGH *GH, CCTK_REAL finf, int npow, int *sw, int vi)
void CCTK_FCALL CCTK_FNAME(RobinBCVarI)(int *ierr,
cGH *GH,
CCTK_REAL *finf,
- CCTK_INT *npow,
+ int *npow,
int *sw,
int *vi)
{
@@ -357,7 +357,7 @@ void CCTK_FCALL CCTK_FNAME(RobinBCVarI)(int *ierr,
int RobinBCVar(cGH *GH,
CCTK_REAL finf,
- CCTK_INT npow,
+ int npow,
int *sw,
const char *vn)
{
@@ -370,7 +370,7 @@ int RobinBCVar(cGH *GH,
void CCTK_FCALL CCTK_FNAME(RobinBCVar)(int *ierr,
cGH *GH,
CCTK_REAL *finf,
- CCTK_INT *npow,
+ int *npow,
int *sw,
ONE_FORTSTRING_ARG)
{
@@ -382,7 +382,7 @@ void CCTK_FCALL CCTK_FNAME(RobinBCVar)(int *ierr,
int RobinBCGroupI(cGH *GH,
CCTK_REAL finf,
- CCTK_INT npow,
+ int npow,
int *sw,
int gi)
{
@@ -405,7 +405,7 @@ int RobinBCGroupI(cGH *GH,
void CCTK_FCALL CCTK_FNAME(RobinBCGroupI)(int *ierr,
cGH *GH,
CCTK_REAL *finf,
- CCTK_INT *npow,
+ int *npow,
int *sw,
int *gi)
{
@@ -415,7 +415,7 @@ void CCTK_FCALL CCTK_FNAME(RobinBCGroupI)(int *ierr,
int RobinBCGroup(cGH *GH,
CCTK_REAL finf,
- CCTK_INT npow,
+ int npow,
int *sw,
const char *impgrpname)
{
@@ -428,7 +428,7 @@ int RobinBCGroup(cGH *GH,
void CCTK_FCALL CCTK_FNAME(RobinBCGroup)(int *ierr,
cGH *GH,
CCTK_REAL *finf,
- CCTK_INT *npow,
+ int *npow,
int *sw,
ONE_FORTSTRING_ARG)
{