Skip to content

Commit b4cc8f8

Browse files
committed
format
1 parent b1f8b98 commit b4cc8f8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/common/m_helper.fpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ contains
320320
321321
type(ic_model_parameters), intent(in) :: p
322322
real(wp), dimension(1:3), optional, intent(in) :: center
323-
real(wp), dimension(1:4,1:4) :: sc, rz, rx, ry, tr, t_back, t_to_origin, out_matrix
323+
real(wp), dimension(1:4, 1:4) :: sc, rz, rx, ry, tr, t_back, t_to_origin, out_matrix
324324
325325
sc = transpose(reshape([ &
326326
p%scale(1), 0._wp, 0._wp, 0._wp, &
@@ -380,7 +380,7 @@ contains
380380
pure subroutine s_transform_vec(vec, matrix)
381381
382382
real(wp), dimension(1:3), intent(inout) :: vec
383-
real(wp), dimension(1:4,1:4), intent(in) :: matrix
383+
real(wp), dimension(1:4, 1:4), intent(in) :: matrix
384384
385385
real(wp), dimension(1:4) :: tmp
386386
@@ -395,7 +395,7 @@ contains
395395
pure subroutine s_transform_triangle(triangle, matrix, matrix_n)
396396
397397
type(t_triangle), intent(inout) :: triangle
398-
real(wp), dimension(1:4,1:4), intent(in) :: matrix, matrix_n
398+
real(wp), dimension(1:4, 1:4), intent(in) :: matrix, matrix_n
399399
400400
integer :: i
401401
@@ -413,7 +413,7 @@ contains
413413
pure subroutine s_transform_model(model, matrix, matrix_n)
414414
415415
type(t_model), intent(inout) :: model
416-
real(wp), dimension(1:4,1:4), intent(in) :: matrix, matrix_n
416+
real(wp), dimension(1:4, 1:4), intent(in) :: matrix, matrix_n
417417
418418
integer :: i
419419

src/pre_process/m_patches.fpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2167,7 +2167,7 @@ contains
21672167
integer :: cell_num
21682168
integer :: ncells
21692169
2170-
real(wp), dimension(1:4,1:4) :: transform, transform_n
2170+
real(wp), dimension(1:4, 1:4) :: transform, transform_n
21712171
21722172
if (present(ib) .and. proc_rank == 0) then
21732173
print *, " * Reading model: "//trim(patch_ib(patch_id)%model_filepath)

0 commit comments

Comments
 (0)