aboutsummaryrefslogtreecommitdiff
path: root/src/patch/test_patch_system.cc
diff options
context:
space:
mode:
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);