aboutsummaryrefslogtreecommitdiff
path: root/src/petsc_confmetric_solver.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/petsc_confmetric_solver.c')
-rw-r--r--src/petsc_confmetric_solver.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/petsc_confmetric_solver.c b/src/petsc_confmetric_solver.c
index b439c8f..ef65006 100644
--- a/src/petsc_confmetric_solver.c
+++ b/src/petsc_confmetric_solver.c
@@ -245,7 +245,7 @@ void petsc_confmetric_solver(cGH *GH, int *MetricPsiI, int MetricPsiISize,
for (i=0;i<pEx->npoints;i++) wsp[i] = -1.0;
/* Get myproc from the CCTK, get the gridspacing */
- myproc = pugh_MyProc(GH);
+ myproc = PUGH_MyProc(GH);
dx = GH->cctk_delta_space[0];
dy = GH->cctk_delta_space[1];
dz = GH->cctk_delta_space[2];
@@ -311,7 +311,7 @@ void petsc_confmetric_solver(cGH *GH, int *MetricPsiI, int MetricPsiISize,
do a sync that means each processor knows the indiced
in the ghost zones (eg, on its neighbors) in a FD stencil
of 1 */
- retcode = pugh_SyncGroup(GH,"ellpetsc::petscworkspace");
+ retcode = PUGH_SyncGroup(GH,"ellpetsc::petscworkspace");
/* So woohoo. Now for each point in our ijk space, we have
@@ -1051,7 +1051,7 @@ void petsc_confmetric_solver(cGH *GH, int *MetricPsiI, int MetricPsiISize,
VecRestoreArray(soln,&values);
/* Sync var in CCTK speak. */
- pugh_SyncGroup(GH,"ellpetsc::petscworkspace");
+ PUGH_SyncGroup(GH,"ellpetsc::petscworkspace");
/* And finally free up the matrix memory FIXME
ierr = MatReleaseValuesMemory(A); CHKERRA(ierr); */