aboutsummaryrefslogtreecommitdiff
path: root/src/driver/Newton.cc
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-09-29 23:06:50 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-09-29 23:06:50 +0000
commit00cb143790567e2712fe8a703f631ba9a53d878b (patch)
tree1cfac196383d7cffcc6ca0dadf3968f7f258e246 /src/driver/Newton.cc
parent9efa1bc892636e943768ddbcb2da62da1ab2101e (diff)
tweak formats for error norms in log output
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@783 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'src/driver/Newton.cc')
-rw-r--r--src/driver/Newton.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/driver/Newton.cc b/src/driver/Newton.cc
index 5ad4267..3402526 100644
--- a/src/driver/Newton.cc
+++ b/src/driver/Newton.cc
@@ -82,7 +82,7 @@ bool Newton_solve(patch_system& ps,
then return false; // *** ERROR RETURN ***
if (verbose_info.print_algorithm_highlights)
then CCTK_VInfo(CCTK_THORNSTRING,
- " iteration %d: H ||rms||=%.2e, ||infinity||=%.2e",
+ " iteration %d: H ||rms||=%.1e, ||infinity||=%.1e",
iteration,
H_norms.rms_norm(), H_norms.infinity_norm());
@@ -122,7 +122,7 @@ bool Newton_solve(patch_system& ps,
then {
if (rcond > 0.0)
then CCTK_VInfo(CCTK_THORNSTRING,
- "done solving linear system (condition number %.2e)",
+ "done solving linear system (condition number %.1e)",
double(rcond));
else CCTK_VInfo(CCTK_THORNSTRING,
"done solving linear system");
@@ -162,7 +162,7 @@ bool Newton_solve(patch_system& ps,
then {
if (scale == 1.0)
then CCTK_VInfo(CCTK_THORNSTRING,
- "h += Delta_h (rms-norm=%.2e, infinity-norm=%.2e)",
+ "h += Delta_h (rms-norm=%.1e, infinity-norm=%.1e)",
Delta_h_norms.rms_norm(),
Delta_h_norms.infinity_norm());
else CCTK_VInfo(CCTK_THORNSTRING,