aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-04-09 17:25:02 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-04-09 17:25:02 +0000
commitf35c3d07197715e82f783876e29f7cc64b6ce295 (patch)
treee7c275589028bce6f181c320ad245d78585ae5a9 /src
parent56eea18f4cbbe2a8f801679edb107e841623735e (diff)
all BCs must use ghosted gridfns!
s/gridfn()/ghosted_gridfn() in symmetry_ghost_zone::synchronize() git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@472 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'src')
-rw-r--r--src/patch/ghost_zone.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/patch/ghost_zone.cc b/src/patch/ghost_zone.cc
index 3c54f18..f778bbe 100644
--- a/src/patch/ghost_zone.cc
+++ b/src/patch/ghost_zone.cc
@@ -143,11 +143,12 @@ void symmetry_ghost_zone::synchronize(int ghosted_min_gfn, int ghosted_max_gfn,
.irho_of_iperp_ipar (sym_iperp,sym_ipar);
const int sym_isigma = symmetry_edge()
.isigma_of_iperp_ipar(sym_iperp,sym_ipar);
- const fp sym_gridfn = symmetry_patch().gridfn(gfn, sym_irho,sym_isigma);
+ const fp sym_gridfn = symmetry_patch()
+ .ghosted_gridfn(gfn, sym_irho,sym_isigma);
const int irho = my_edge(). irho_of_iperp_ipar(iperp,ipar);
const int isigma = my_edge().isigma_of_iperp_ipar(iperp,ipar);
- my_patch().gridfn(gfn, irho,isigma) = sym_gridfn;
+ my_patch().ghosted_gridfn(gfn, irho,isigma) = sym_gridfn;
}
}
}