From bf42450110490b53d83f7280828a6e8e0b11c43f Mon Sep 17 00:00:00 2001
From: Lionel GUEZ <guez@lmd.ens.fr>
Date: Tue, 26 Jul 2022 11:36:47 +0200
Subject: [PATCH] Rename `write_snapshot` to `save_snapshot`

Rename procedure `write_snapshot` to `save_snapshot`.
---
 Overlap/Tests/save_snapshot.f90          | 8 ++++----
 Overlap/Tests/test_get_dispatch_snap.f90 | 4 ++--
 Overlap/Tests/test_read_snapshot.f90     | 4 ++--
 Overlap/Tests/test_send_recv.f90         | 4 ++--
 4 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/Overlap/Tests/save_snapshot.f90 b/Overlap/Tests/save_snapshot.f90
index 3141dfff..6144cb2d 100644
--- a/Overlap/Tests/save_snapshot.f90
+++ b/Overlap/Tests/save_snapshot.f90
@@ -1,10 +1,10 @@
-module write_snapshot_m
+module save_snapshot_m
 
   implicit none
 
 contains
 
-  subroutine write_snapshot(s, corner, step, nlon, nlat, copy, d)
+  subroutine save_snapshot(s, corner, step, nlon, nlat, copy, d)
 
     ! Libraries:
     use jumble, only: arth
@@ -55,6 +55,6 @@ contains
          * step(1), step(1), nlon + 2 * copy), latitude = arth(corner(2), &
          step(2), nlat))
 
-  end subroutine write_snapshot
+  end subroutine save_snapshot
 
-end module write_snapshot_m
+end module save_snapshot_m
diff --git a/Overlap/Tests/test_get_dispatch_snap.f90 b/Overlap/Tests/test_get_dispatch_snap.f90
index b1aa7f87..0c5d8d2c 100644
--- a/Overlap/Tests/test_get_dispatch_snap.f90
+++ b/Overlap/Tests/test_get_dispatch_snap.f90
@@ -16,7 +16,7 @@ program test_get_dispatch_snap
   use send_snapshot_m, only: send_snapshot
   use shpc_close_m, only: shpc_close
   use shpc_open_m, only: shpc_open
-  use write_snapshot_m, only: write_snapshot
+  use save_snapshot_m, only: save_snapshot
 
   implicit none
 
@@ -105,7 +105,7 @@ program test_get_dispatch_snap
   call dispatch_snapshot(s, unit_isolated, rank, k_begin, max_delta = 1, k = k)
 
   if (rank == 0) then
-     call write_snapshot(s, corner, step, nlon, nlat, copy, d = k)
+     call save_snapshot(s, corner, step, nlon, nlat, copy, d = k)
      close(unit_isolated)
   end if
 
diff --git a/Overlap/Tests/test_read_snapshot.f90 b/Overlap/Tests/test_read_snapshot.f90
index 6fbd08d0..ab020605 100644
--- a/Overlap/Tests/test_read_snapshot.f90
+++ b/Overlap/Tests/test_read_snapshot.f90
@@ -11,7 +11,7 @@ program test_read_snapshot
   use read_snapshot_m, only: read_snapshot
   use shpc_close_m, only: shpc_close
   use shpc_open_m, only: shpc_open
-  use write_snapshot_m, only: write_snapshot
+  use save_snapshot_m, only: save_snapshot
 
   implicit none
 
@@ -85,6 +85,6 @@ program test_read_snapshot
      CALL shpc_close(hshp(i))
   end do
 
-  call write_snapshot(s, corner_deg, step_deg, nlon, nlat, copy, k)
+  call save_snapshot(s, corner_deg, step_deg, nlon, nlat, copy, k)
 
 end program test_read_snapshot
diff --git a/Overlap/Tests/test_send_recv.f90 b/Overlap/Tests/test_send_recv.f90
index 860beeb6..7897b5d2 100644
--- a/Overlap/Tests/test_send_recv.f90
+++ b/Overlap/Tests/test_send_recv.f90
@@ -14,11 +14,11 @@ program test_send_recv
   use derived_types, only: snapshot, shpc_slice_handler, shpc_slice_meta
   use read_snapshot_m, only: read_snapshot
   use recv_snapshot_m, only: recv_snapshot
+  use save_snapshot_m, only: save_snapshot
   use send_snapshot_m, only: send_snapshot
   use shpc_close_m, only: shpc_close
   use shpc_open_m, only: shpc_open
   use write_eddy_m, only: write_eddy
-  use write_snapshot_m, only: write_snapshot
 
   implicit none
 
@@ -111,7 +111,7 @@ program test_send_recv
      call assert(flag, "test_send_recv MPI_Comm_get_attr MPI_TAG_UB")
      print *, "MPI_TAG_UB = ", attribute_val
      call recv_snapshot(s, nlon, nlat, copy, source = 1, tag = ssm%d0)
-     call write_snapshot(s, corner_deg, step_deg, nlon, nlat, copy, ssm%d0)
+     call save_snapshot(s, corner_deg, step_deg, nlon, nlat, copy, ssm%d0)
   end if
 
   call mpi_finalize
-- 
GitLab