aboutsummaryrefslogtreecommitdiff
path: root/src/driver/Newton.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/driver/Newton.cc')
-rw-r--r--src/driver/Newton.cc22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/driver/Newton.cc b/src/driver/Newton.cc
index e7ce466..7267088 100644
--- a/src/driver/Newton.cc
+++ b/src/driver/Newton.cc
@@ -1,5 +1,5 @@
// Newton.cc -- solve H(h) = 0 via Newton's method
-// $Id$
+// $Header$
//
// Newton_solve - driver to solve H(h) = 0 via Newton's method
//
@@ -21,14 +21,14 @@
#include "../jtutil/linear_map.hh"
using jtutil::error_exit;
-#include "../util/coords.hh"
-#include "../util/grid.hh"
-#include "../util/fd_grid.hh"
-#include "../util/patch.hh"
-#include "../util/patch_edge.hh"
-#include "../util/patch_interp.hh"
-#include "../util/ghost_zone.hh"
-#include "../util/patch_system.hh"
+#include "../patch/coords.hh"
+#include "../patch/grid.hh"
+#include "../patch/fd_grid.hh"
+#include "../patch/patch.hh"
+#include "../patch/patch_edge.hh"
+#include "../patch/patch_interp.hh"
+#include "../patch/ghost_zone.hh"
+#include "../patch/patch_system.hh"
#include "../elliptic/Jacobian.hh"
@@ -67,7 +67,7 @@ bool Newton_solve(patch_system& ps,
then CCTK_VInfo(CCTK_THORNSTRING,
"Newton iteration %d", iteration);
- if (solver_info.output_h_and_H_at_each_Newton_iteration)
+ if (IO_info.output_h_and_H_at_each_Newton_iteration)
then output_gridfn(ps, gfns::gfn__h,
IO_info, IO_info.h_base_file_name,
hn, verbose_info.print_algorithm_details,
@@ -86,7 +86,7 @@ bool Newton_solve(patch_system& ps,
iteration,
H_norms.rms_norm(), H_norms.infinity_norm());
- if (solver_info.output_h_and_H_at_each_Newton_iteration)
+ if (IO_info.output_h_and_H_at_each_Newton_iteration)
then output_gridfn(ps, gfns::gfn__H,
IO_info, IO_info.H_base_file_name,
hn, verbose_info.print_algorithm_details,