Skip to content

Commit 0423182

Browse files
committed
remove trailing white spaces
1 parent 661e27e commit 0423182

File tree

4 files changed

+38
-38
lines changed

4 files changed

+38
-38
lines changed

mtx/public/mtx_bcyclic_dble_decsol.dek

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
22
subroutine bcyclic_dble_decsolblk( &
33
iop,caller_id,nvar,nz,lblk,dblk,ublk,brhs,ipiv,lrd,rpar_decsol,lid,ipar_decsol,ierr)
44
use mtx_def, only: lapack
@@ -8,7 +8,7 @@
88
real(dp), dimension(:), pointer, intent(inout) :: lblk, dblk, ublk ! =(nvar,nvar,nz)
99
! row(i) of mtx has lblk(:,:,i), dblk(:,:,i), ublk(:,:,i)
1010
! lblk(:,:,1) is not used; ublk(:,:,nz) is not used.
11-
real(dp), pointer, intent(inout) :: brhs(:) ! =(nvar,nz)
11+
real(dp), pointer, intent(inout) :: brhs(:) ! =(nvar,nz)
1212
real(dp), pointer, intent(inout) :: rpar_decsol(:) ! (lrd)
1313
integer, pointer, intent(inout) :: ipar_decsol(:) ! (lid)
1414
integer, intent(out) :: ierr
@@ -35,7 +35,7 @@
3535
end if
3636
end subroutine bcyclic_dble_decsolblk
3737

38-
38+
3939
subroutine bcyclic_dble_work_sizes(nvar,nz,lrd,lid)
4040
integer, intent(in) :: nvar,nz
4141
integer, intent(out) :: lrd,lid

mtx/public/mtx_dble_decsol.dek

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
22
subroutine lapack_decsol(iop,n,ndim,a,ml,mu,b,ip,lrd,rpar_decsol,lid,ipar_decsol,ier)
33
use const_def, only: dp
44
integer, intent(in) :: iop, n, ndim, lrd, lid
@@ -37,7 +37,7 @@
3737
end if
3838
end subroutine lapack_decsol
3939

40-
40+
4141
subroutine lapack_work_sizes(n,lrd,lid)
4242
integer, intent(in) :: n
4343
integer, intent(out) :: lrd,lid
@@ -46,10 +46,10 @@
4646
end subroutine lapack_work_sizes
4747

4848

49-
49+
5050
! complex(dp) routines
5151

52-
52+
5353
subroutine lapack_zwork_sizes(n,mu,ml,lcd,lrd,lid)
5454
integer, intent(in) :: n,mu,ml
5555
integer, intent(out) :: lcd,lrd,lid
@@ -63,7 +63,7 @@
6363
lrd = 0
6464
lcd = lda*(n+1) + n
6565
end subroutine lapack_zwork_sizes
66-
66+
6767

6868

6969
subroutine lapack_decsolc(iop,n,ndim,ar,ai,ml,mu,br,bi,ip,lcd,cpar_decsol,lrd,rpar_decsol,lid,ipar_decsol,ier)
@@ -112,20 +112,20 @@
112112
real(dp), intent(inout), pointer :: rpar_decsol(:) ! (lrd)
113113
integer, intent(inout), pointer :: ipar_decsol(:) ! (lid)
114114
integer, intent(out) :: ier
115-
115+
116116
! lcd must be >= n*ndim
117-
117+
118118
complex(dp), pointer :: a(:,:)
119119
integer :: i, j
120-
120+
121121
i=1
122122
a(1:ndim,1:n) => cpar_decsol(i:i+n*ndim-1)
123123
i=i+n*ndim
124124
if (i-1 > lcd) then
125125
ier = -1
126126
return
127127
end if
128-
128+
129129
do j=1,n
130130
do i=1,ndim
131131
a(i,j) = cmplx(ar(i,j),ai(i,j), kind=dp)
@@ -138,11 +138,11 @@
138138
ai(i,j) = AIMAG(a(i,j))
139139
end do
140140
end do
141-
141+
142142
end subroutine lapack_decc
143-
144-
145-
143+
144+
145+
146146
subroutine lapack_decbc(n,ndim,ar,ai,ml,mu,ip,lcd,cpar_decsol,lrd,rpar_decsol,lid,ipar_decsol,ier)
147147
use const_def, only: dp
148148
integer, intent(in) :: n, ndim, ml, mu, lcd, lrd, lid
@@ -152,20 +152,20 @@
152152
real(dp), intent(inout), pointer :: rpar_decsol(:) ! (lrd)
153153
integer, intent(inout), pointer :: ipar_decsol(:) ! (lid)
154154
integer, intent(out) :: ier
155-
155+
156156
! ldc must be >= n*ndim
157-
157+
158158
complex(dp), pointer :: a(:,:)
159159
integer :: i, j
160-
160+
161161
i=1
162162
a(1:ndim,1:n) => cpar_decsol(i:i+n*ndim-1)
163163
i=i+n*ndim
164164
if (i-1 > lcd) then
165165
ier = -1
166166
return
167167
end if
168-
168+
169169
do j=1,n
170170
do i=1,ndim
171171
a(i,j) = cmplx(ar(i,j),ai(i,j), kind=dp)
@@ -178,10 +178,10 @@
178178
ai(i,j) = AIMAG(a(i,j))
179179
end do
180180
end do
181-
181+
182182
end subroutine lapack_decbc
183-
184-
183+
184+
185185
subroutine lapack_solc(n,ndim,ar,ai,br,bi,ip,lcd,cpar_decsol,lrd,rpar_decsol,lid,ipar_decsol,ier)
186186
integer, intent(in) :: n, ndim, lcd, lrd, lid
187187
integer, intent(in) :: ip(n)
@@ -191,12 +191,12 @@
191191
real(dp), intent(inout), pointer :: rpar_decsol(:) ! (lrd)
192192
integer, intent(inout), pointer :: ipar_decsol(:) ! (lid)
193193
integer, intent(out) :: ier
194-
194+
195195
! ldc must be >= n*(ndim+1)
196-
196+
197197
complex(dp), pointer :: a(:,:), b(:)
198198
integer :: i, j
199-
199+
200200
i = 1
201201
a(1:ndim,1:n) => cpar_decsol(i:i+n*ndim-1)
202202
i=i+n*ndim
@@ -205,7 +205,7 @@
205205
ier = -1
206206
return
207207
end if
208-
208+
209209
do j=1,n
210210
do i=1,ndim
211211
a(i,j) = cmplx(ar(i,j),ai(i,j), kind=dp)
@@ -232,12 +232,12 @@
232232
real(dp), intent(inout), pointer :: rpar_decsol(:) ! (lrd)
233233
integer, intent(inout), pointer :: ipar_decsol(:) ! (lid)
234234
integer, intent(out) :: ier
235-
235+
236236
! ldc must be >= n*(ndim+1)
237-
237+
238238
complex(dp), pointer :: a(:,:), b(:)
239239
integer :: i, j
240-
240+
241241
i = 1
242242
a(1:ndim,1:n) => cpar_decsol(i:i+n*ndim-1)
243243
i=i+n*ndim
@@ -246,7 +246,7 @@
246246
ier = -1
247247
return
248248
end if
249-
249+
250250
do j=1,n
251251
do i=1,ndim
252252
a(i,j) = cmplx(ar(i,j),ai(i,j), kind=dp)
@@ -260,8 +260,8 @@
260260
bi(j) = AIMAG(b(j))
261261
end do
262262
end do
263-
264-
263+
264+
265265
end subroutine lapack_solbc
266-
267-
266+
267+

mtx/public/mtx_debug_decsol.dek

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
22

33
subroutine debug_decsol(iop,n,ndim,a,ml,mu,b,ip,lrd,rpar,lid,ipar,ier)
44
integer, intent(in) :: iop, n, ndim, lrd, lid, ml, mu
@@ -27,7 +27,7 @@
2727
end if
2828
end if
2929
end subroutine debug_decsol
30-
30+
3131

3232
subroutine debug_decsolc(iop,n,ndim,ar,ai,ml,mu,br,bi,ip,lcd,cpar_decsol,lrd,rpar_decsol,lid,ipar_decsol,ier)
3333
integer, intent(in) :: iop, n, ndim, lcd, lrd, lid, ml, mu

mtx/public/mtx_decsolblk_dble.dek

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
integer, intent(in) :: caller_id, nvar, nz, iop, lrd, lid
55
integer, pointer, intent(inout) :: ipiv(:) ! =(nvar,nz)
66
real(dp), dimension(:), pointer, intent(inout) :: lblk, dblk, ublk ! =(nvar,nvar,nz)
7-
real(dp), pointer, intent(inout) :: brhs(:) ! =(nvar,nz)
7+
real(dp), pointer, intent(inout) :: brhs(:) ! =(nvar,nz)
88
real(dp), pointer, intent(inout) :: rpar_decsol(:) ! (lrd)
99
integer, pointer, intent(inout) :: ipar_decsol(:) ! (lid)
1010
integer, intent(out) :: ierr

0 commit comments

Comments
 (0)