aboutsummaryrefslogtreecommitdiff
path: root/src/patch/test_patch_system.cc
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2001-09-14 19:24:56 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2001-09-14 19:24:56 +0000
commit23bddd47288a6abde4423b2b8c4dee2b83bd5171 (patch)
tree802774f0e48d29d1fc153161d43a0c02d5fdaf68 /src/patch/test_patch_system.cc
parent34e979ac6db795eb9c8c3ea1612699525d5be574 (diff)
slightly change command-line arg strings
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@342 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'src/patch/test_patch_system.cc')
-rw-r--r--src/patch/test_patch_system.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/patch/test_patch_system.cc b/src/patch/test_patch_system.cc
index 904866a..f35f6bd 100644
--- a/src/patch/test_patch_system.cc
+++ b/src/patch/test_patch_system.cc
@@ -110,7 +110,7 @@ Usage:\n\
N_ghost_points N_overlap_points delta_drho_dsigma\n\
interpolator_order\n\
{ fn | ghost-zone\
- | deriv.{fn|rho|sigma|rho.rho|rho.sigma|sigma.sigma|all} }\n\
+ | deriv.{fn|rho|sigma|rhorho|rhosigma|sigmasigma|all} }\n\
[ fn | ghosted-fn | deriv-fd | deriv-analytic | error ]\n\
\n\
This program tests patch_system:: and its subsidiary classes. After\n\
@@ -209,17 +209,17 @@ else if (STRING_EQUAL(argv[6], "deriv.sigma"))
which_test = test_deriv;
which_derivs = which_deriv_sigma;
}
-else if (STRING_EQUAL(argv[6], "deriv.rho.rho"))
+else if (STRING_EQUAL(argv[6], "deriv.rhorho"))
then {
which_test = test_deriv;
which_derivs = which_deriv_rho_rho;
}
-else if (STRING_EQUAL(argv[6], "deriv.rho.sigma"))
+else if (STRING_EQUAL(argv[6], "deriv.rhosigma"))
then {
which_test = test_deriv;
which_derivs = which_deriv_rho_sigma;
}
-else if (STRING_EQUAL(argv[6], "deriv.sigma.sigma"))
+else if (STRING_EQUAL(argv[6], "deriv.sigmasigma"))
then {
which_test = test_deriv;
which_derivs = which_deriv_sigma_sigma;