aboutsummaryrefslogtreecommitdiff
path: root/src/patch/test_patch_system.cc
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2001-09-14 18:57:40 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2001-09-14 18:57:40 +0000
commita64ffc3cfc305b5a1c8a5e56ae1ed5d59b76690f (patch)
treea649529259974438d7afee625e30603846a9a2e1 /src/patch/test_patch_system.cc
parent5126f93d62d38a61033501bdfa4b4b2d918d994c (diff)
add more status msgs
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@337 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'src/patch/test_patch_system.cc')
-rw-r--r--src/patch/test_patch_system.cc9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/patch/test_patch_system.cc b/src/patch/test_patch_system.cc
index a1d3293..5cc1eb1 100644
--- a/src/patch/test_patch_system.cc
+++ b/src/patch/test_patch_system.cc
@@ -405,7 +405,9 @@ void finite_diff(patch_system& ps,
int gfn_src, int gfn_dst,
int which_derivs)
{
-printf("## finite differencing...\n");
+printf(
+"## finite differencing (gfn_src=%d, gfn_dst=%d, which_derivs=0x%02x)...\n",
+ gfn_src, gfn_dst, which_derivs);
for (int pn = 0 ; pn < ps.N_patches() ; ++pn)
{
@@ -435,7 +437,8 @@ void analytic_derivs(patch_system& ps,
int gfn_dst,
int which_derivs)
{
-printf("## computing analytic derivatives...\n");
+printf("## computing analytic derivatives(gfn_dst=%d, which_derivs=0x%02x...\n",
+ gfn_dst, which_derivs);
for (int pn = 0 ; pn < ps.N_patches() ; ++pn)
{
@@ -467,6 +470,8 @@ void gridfn_minus(patch_system& ps,
int gfn_x, int gfn_y, int gfn_dst,
bool want_ghost_zones)
{
+printf("## gridfn_minus(gfn_x=%d, gfn_y=%d, gfn_dst=%d...\n",
+ gfn_x, gfn_y, gfn_dst);
for (int pn = 0 ; pn < ps.N_patches() ; ++pn)
{
patch& p = ps.ith_patch(pn);