aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgoodale <goodale@f80f6fb6-8356-4fd4-90bc-d84ad503c100>2000-04-19 07:58:33 +0000
committergoodale <goodale@f80f6fb6-8356-4fd4-90bc-d84ad503c100>2000-04-19 07:58:33 +0000
commitcd6e782f0bb52b722771bcd165a9e85fd333845a (patch)
tree2100abf6b1bd14da97ae4f95f8f3575b543ec601
parentacd7a42b3d1301a3f94121f15f5740113e49e74a (diff)
Removed explicit calls to sync and boundaries. Now the syncing is
done via the schedular. Tom git-svn-id: http://svn.cactuscode.org/arrangements/CactusWave/WaveToyF90/trunk@43 f80f6fb6-8356-4fd4-90bc-d84ad503c100
-rw-r--r--schedule.ccl5
-rw-r--r--src/WaveToy.F8
2 files changed, 5 insertions, 8 deletions
diff --git a/schedule.ccl b/schedule.ccl
index 1b0c6cf..8a66665 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -16,6 +16,11 @@ schedule WaveToyF90_InitSymBound at BASEGRID
schedule WaveToyF90_Evolution as WaveToy_Evolution at EVOL
{
LANG: Fortran
+ SYNC: scalarevolve
} "Evolution of 3D wave equation"
+schedule WaveToyF90_Boundaries as WaveToy_Boundaries at EVOL AFTER WaveToy_Evolution
+{
+ LANG: Fortran
+} "Boundaries of 3D wave equation"
diff --git a/src/WaveToy.F b/src/WaveToy.F
index 24228c4..59d52ca 100644
--- a/src/WaveToy.F
+++ b/src/WaveToy.F
@@ -86,14 +86,6 @@
end do
end do
-! Synchronize
-! -----------
- call CCTK_SyncGroup(cctkGH,"wavetoy::scalarevolve")
-
-! Apply boundary conditions
-! -------------------------
- call WaveToyF90_Boundaries(CCTK_PASS_FTOF)
-
end subroutine WaveToyF90_Evolution