aboutsummaryrefslogtreecommitdiff
path: root/src/patch/patch.hh
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2001-09-05 15:18:04 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2001-09-05 15:18:04 +0000
commit6fc582d11713fde70e5311833e96363be543b7a2 (patch)
tree6e26f3ccd99757008819c46343ba10a66db9b376 /src/patch/patch.hh
parent412d5b8f1c650eface69d7ce35b20d815f0d1cdc (diff)
clarify comments on return values of setup_*_ghost_zone()
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@283 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'src/patch/patch.hh')
-rw-r--r--src/patch/patch.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/patch/patch.hh b/src/patch/patch.hh
index f51636d..e8c3ec9 100644
--- a/src/patch/patch.hh
+++ b/src/patch/patch.hh
@@ -303,13 +303,13 @@ public:
// assert() that this ghost zone hasn't been set up yet,
// then set it up as mirror-symmetry
- // ... return reference to new ghost zone
+ // ... return reference to newly-set-up ghost zone object
symmetry_ghost_zone& setup_mirror_symmetry_ghost_zone
(const patch_edge& edge);
// assert() that this ghost zone hasn't been set up yet,
// then set it up as periodic-symmetry
- // ... return reference to new ghost zone
+ // ... return reference to newly-set-up ghost zone object
symmetry_ghost_zone& setup_periodic_symmetry_ghost_zone
(const patch_edge& my_edge, const patch_edge& symmetry_edge,
bool ipar_map_sign); // one of cpm_map::{plus,minus}_map
@@ -318,7 +318,7 @@ public:
// then set it up as interpatch
// ... but don't link it to the other patch's frontier
// (which doesn't exist yet)
- // ... return reference to new ghost zone
+ // ... return reference to newly-set-up ghost zone object
interpatch_ghost_zone& setup_interpatch_ghost_zone
(const patch_edge& my_edge, const patch_edge& other_edge,
int N_overlap_points);