aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-10-10 17:01:09 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-10-10 17:01:09 +0000
commit60ae7d4729c700384fdd720138cf4acd4f4ef6bc (patch)
treee1d6ae1425f261ac5774e034cf929beb9c8a154c
parentb024ff61a22b1a5c602d1b2db129d1a3d5d285cb (diff)
doc/TODO
spelling fix, clarification src/driver/setup.cc change CCTI_VWarn() to CCTK_VInfo() for a message that's not really an error git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@824 f88db872-0e4f-0410-b76b-b9085cfa78c5
-rw-r--r--doc/TODO3
-rw-r--r--src/driver/setup.cc8
2 files changed, 5 insertions, 6 deletions
diff --git a/doc/TODO b/doc/TODO
index adc3195..165507b 100644
--- a/doc/TODO
+++ b/doc/TODO
@@ -7,7 +7,8 @@ medium things
move origin point
export a "compute h(theta,phi)" function
so other thorns could test point membership in/outside AH etc
- prevent h from going negative, e use log(h) in Newton iteration?
+ prevent h from going negative if the iteration isn't converging
+ (maybe use log(h) in Newton iteration?)
large things
multi-processor (interpolator, overall control)
diff --git a/src/driver/setup.cc b/src/driver/setup.cc
index f3e859d..782facf 100644
--- a/src/driver/setup.cc
+++ b/src/driver/setup.cc
@@ -449,11 +449,9 @@ else if (STRING_EQUAL(grid_domain, "bitant"))
if (origin_z == 0.0)
then return patch_system::plus_z_hemisphere_patch_system;
else {
- CCTK_VWarn(1, __LINE__, __FILE__, CCTK_THORNSTRING,
-"\n"
-" choose_patch_system_type()\n"
-" bitant mode but patch system origin_z=%g != 0\n"
-" ==> using \"full sphere\" patch system"
+ CCTK_VInfo(CCTK_THORNSTRING,
+" bitant mode but patch system origin_z=%g != 0\n"
+" ==> using \"full sphere\" patch system"
,
double(origin_z));
return patch_system::full_sphere_patch_system;