aboutsummaryrefslogtreecommitdiff
path: root/src/patch/patch_system.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/patch/patch_system.cc')
-rw-r--r--src/patch/patch_system.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/patch/patch_system.cc b/src/patch/patch_system.cc
index b775b3c..ec80133 100644
--- a/src/patch/patch_system.cc
+++ b/src/patch/patch_system.cc
@@ -1149,7 +1149,8 @@ void patch_system::synchronize(int ghosted_min_gfn_to_sync,
// FIXME FIXME: at the moment we ignore the 3-phase algorithm and just
// pass all the Jacobian operations down to the ghost zones
//
-void patch_system::compute_synchronize_Jacobian()
+void patch_system::compute_synchronize_Jacobian(int ghosted_min_gfn_to_sync,
+ int ghosted_max_gfn_to_sync)
{
for (int pn = 0 ; pn < N_patches() ; ++pn)
{
@@ -1161,7 +1162,8 @@ void patch_system::compute_synchronize_Jacobian()
for (int want_rho = false ; want_rho <= true ; ++want_rho)
{
ghost_zone& gz = p.minmax_ang_ghost_zone(want_min, want_rho);
- gz.compute_synchronize_Jacobian();
+ gz.compute_Jacobian(ghosted_min_gfn_to_sync,
+ ghosted_max_gfn_to_sync);
}
}
}