FE-Project
Loading...
Searching...
No Matches
scale_quicksort.F90
Go to the documentation of this file.
1!-------------------------------------------------------------------------------
2! Warning: This file was generated from common/scale_quicksort.F90.erb.
3! Do not edit this file.
4!-------------------------------------------------------------------------------
14#include "scaleFElib.h"
16 !-----------------------------------------------------------------------------
17 !
18 !++ used modules
19 !
20 use scale_precision
21
22 !-----------------------------------------------------------------------------
23 implicit none
24 private
25
26 !-----------------------------------------------------------------------------
27 !
28 !++ Public procedure
29 !
30
32 module procedure quicksort_exec_with_idx4_int4
33 module procedure quicksort_exec_with_idx4_int8
34 module procedure quicksort_exec_with_idx4_real_rp
35 module procedure quicksort_exec_with_idx8_int4
36 module procedure quicksort_exec_with_idx8_int8
37 module procedure quicksort_exec_with_idx8_real_rp
38 end interface quicksort_exec_with_idx
39
41
42contains
43
44 !- private routines -------------------------------------
45
46 subroutine quicksort_exec_with_idx4_int4( npoints, val, indx )
47 integer, intent(in) :: npoints
48 integer(kind=4), intent(inout) :: val(npoints)
49 integer(kind=4), intent(inout) :: indx(npoints)
50
51 !-------------------------------
52 call quicksort_core_idx4_int4(val, indx, 1, npoints)
53 end subroutine quicksort_exec_with_idx4_int4
54 subroutine quicksort_exec_with_idx4_int8( npoints, val, indx )
55 integer, intent(in) :: npoints
56 integer(kind=8), intent(inout) :: val(npoints)
57 integer(kind=4), intent(inout) :: indx(npoints)
58
59 !-------------------------------
60 call quicksort_core_idx4_int8(val, indx, 1, npoints)
61 end subroutine quicksort_exec_with_idx4_int8
62 subroutine quicksort_exec_with_idx4_real_rp( npoints, val, indx )
63 integer, intent(in) :: npoints
64 real(RP), intent(inout) :: val(npoints)
65 integer(kind=4), intent(inout) :: indx(npoints)
66
67 !-------------------------------
68 call quicksort_core_idx4_real_rp(val, indx, 1, npoints)
69 end subroutine quicksort_exec_with_idx4_real_rp
70 subroutine quicksort_exec_with_idx8_int4( npoints, val, indx )
71 integer, intent(in) :: npoints
72 integer(kind=4), intent(inout) :: val(npoints)
73 integer(kind=8), intent(inout) :: indx(npoints)
74
75 !-------------------------------
76 call quicksort_core_idx8_int4(val, indx, 1, npoints)
77 end subroutine quicksort_exec_with_idx8_int4
78 subroutine quicksort_exec_with_idx8_int8( npoints, val, indx )
79 integer, intent(in) :: npoints
80 integer(kind=8), intent(inout) :: val(npoints)
81 integer(kind=8), intent(inout) :: indx(npoints)
82
83 !-------------------------------
84 call quicksort_core_idx8_int8(val, indx, 1, npoints)
85 end subroutine quicksort_exec_with_idx8_int8
86 subroutine quicksort_exec_with_idx8_real_rp( npoints, val, indx )
87 integer, intent(in) :: npoints
88 real(RP), intent(inout) :: val(npoints)
89 integer(kind=8), intent(inout) :: indx(npoints)
90
91 !-------------------------------
92 call quicksort_core_idx8_real_rp(val, indx, 1, npoints)
93 end subroutine quicksort_exec_with_idx8_real_rp
94
95 !-- private ------------------------------------------------
96
97 recursive subroutine quicksort_core_idx4_int4(key, ind, first, last)
98 implicit none
99
100 integer(kind=4), intent(inout) :: key(:)
101 integer(kind=4), intent(inout) :: ind(:)
102 integer, intent(in) :: first, last
103
104 integer(kind=4) :: x, tmp
105 integer :: i, j
106 integer(kind=4) :: tmp_ind
107 !-------------------------------
108
109 x = key( (first + last)/2 )
110 i = first
111 j = last
112
113 do
114 do while ( key(i) < x )
115 i = i + 1
116 end do
117 do while ( x < key(j) )
118 j = j - 1
119 end do
120 if ( i >= j ) exit
121
122 ! swap
123 tmp = key(i); key(i) = key(j); key(j) = tmp
124 tmp_ind = ind(i); ind(i) = ind(j); ind(j) = tmp_ind
125
126 i = i + 1; j = j - 1
127 end do
128
129 if ( first < i-1 ) call quicksort_core_idx4_int4(key, ind, first, i-1)
130 if ( j+1 < last ) call quicksort_core_idx4_int4(key, ind, j+1, last)
131
132 return
133 end subroutine quicksort_core_idx4_int4
134 recursive subroutine quicksort_core_idx4_int8(key, ind, first, last)
135 implicit none
136
137 integer(kind=8), intent(inout) :: key(:)
138 integer(kind=4), intent(inout) :: ind(:)
139 integer, intent(in) :: first, last
140
141 integer(kind=8) :: x, tmp
142 integer :: i, j
143 integer(kind=4) :: tmp_ind
144 !-------------------------------
145
146 x = key( (first + last)/2 )
147 i = first
148 j = last
149
150 do
151 do while ( key(i) < x )
152 i = i + 1
153 end do
154 do while ( x < key(j) )
155 j = j - 1
156 end do
157 if ( i >= j ) exit
158
159 ! swap
160 tmp = key(i); key(i) = key(j); key(j) = tmp
161 tmp_ind = ind(i); ind(i) = ind(j); ind(j) = tmp_ind
162
163 i = i + 1; j = j - 1
164 end do
165
166 if ( first < i-1 ) call quicksort_core_idx4_int8(key, ind, first, i-1)
167 if ( j+1 < last ) call quicksort_core_idx4_int8(key, ind, j+1, last)
168
169 return
170 end subroutine quicksort_core_idx4_int8
171 recursive subroutine quicksort_core_idx4_real_rp(key, ind, first, last)
172 implicit none
173
174 real(RP), intent(inout) :: key(:)
175 integer(kind=4), intent(inout) :: ind(:)
176 integer, intent(in) :: first, last
177
178 real(RP) :: x, tmp
179 integer :: i, j
180 integer(kind=4) :: tmp_ind
181 !-------------------------------
182
183 x = key( (first + last)/2 )
184 i = first
185 j = last
186
187 do
188 do while ( key(i) < x )
189 i = i + 1
190 end do
191 do while ( x < key(j) )
192 j = j - 1
193 end do
194 if ( i >= j ) exit
195
196 ! swap
197 tmp = key(i); key(i) = key(j); key(j) = tmp
198 tmp_ind = ind(i); ind(i) = ind(j); ind(j) = tmp_ind
199
200 i = i + 1; j = j - 1
201 end do
202
203 if ( first < i-1 ) call quicksort_core_idx4_real_rp(key, ind, first, i-1)
204 if ( j+1 < last ) call quicksort_core_idx4_real_rp(key, ind, j+1, last)
205
206 return
207 end subroutine quicksort_core_idx4_real_rp
208 recursive subroutine quicksort_core_idx8_int4(key, ind, first, last)
209 implicit none
210
211 integer(kind=4), intent(inout) :: key(:)
212 integer(kind=8), intent(inout) :: ind(:)
213 integer, intent(in) :: first, last
214
215 integer(kind=4) :: x, tmp
216 integer :: i, j
217 integer(kind=8) :: tmp_ind
218 !-------------------------------
219
220 x = key( (first + last)/2 )
221 i = first
222 j = last
223
224 do
225 do while ( key(i) < x )
226 i = i + 1
227 end do
228 do while ( x < key(j) )
229 j = j - 1
230 end do
231 if ( i >= j ) exit
232
233 ! swap
234 tmp = key(i); key(i) = key(j); key(j) = tmp
235 tmp_ind = ind(i); ind(i) = ind(j); ind(j) = tmp_ind
236
237 i = i + 1; j = j - 1
238 end do
239
240 if ( first < i-1 ) call quicksort_core_idx8_int4(key, ind, first, i-1)
241 if ( j+1 < last ) call quicksort_core_idx8_int4(key, ind, j+1, last)
242
243 return
244 end subroutine quicksort_core_idx8_int4
245 recursive subroutine quicksort_core_idx8_int8(key, ind, first, last)
246 implicit none
247
248 integer(kind=8), intent(inout) :: key(:)
249 integer(kind=8), intent(inout) :: ind(:)
250 integer, intent(in) :: first, last
251
252 integer(kind=8) :: x, tmp
253 integer :: i, j
254 integer(kind=8) :: tmp_ind
255 !-------------------------------
256
257 x = key( (first + last)/2 )
258 i = first
259 j = last
260
261 do
262 do while ( key(i) < x )
263 i = i + 1
264 end do
265 do while ( x < key(j) )
266 j = j - 1
267 end do
268 if ( i >= j ) exit
269
270 ! swap
271 tmp = key(i); key(i) = key(j); key(j) = tmp
272 tmp_ind = ind(i); ind(i) = ind(j); ind(j) = tmp_ind
273
274 i = i + 1; j = j - 1
275 end do
276
277 if ( first < i-1 ) call quicksort_core_idx8_int8(key, ind, first, i-1)
278 if ( j+1 < last ) call quicksort_core_idx8_int8(key, ind, j+1, last)
279
280 return
281 end subroutine quicksort_core_idx8_int8
282 recursive subroutine quicksort_core_idx8_real_rp(key, ind, first, last)
283 implicit none
284
285 real(RP), intent(inout) :: key(:)
286 integer(kind=8), intent(inout) :: ind(:)
287 integer, intent(in) :: first, last
288
289 real(RP) :: x, tmp
290 integer :: i, j
291 integer(kind=8) :: tmp_ind
292 !-------------------------------
293
294 x = key( (first + last)/2 )
295 i = first
296 j = last
297
298 do
299 do while ( key(i) < x )
300 i = i + 1
301 end do
302 do while ( x < key(j) )
303 j = j - 1
304 end do
305 if ( i >= j ) exit
306
307 ! swap
308 tmp = key(i); key(i) = key(j); key(j) = tmp
309 tmp_ind = ind(i); ind(i) = ind(j); ind(j) = tmp_ind
310
311 i = i + 1; j = j - 1
312 end do
313
314 if ( first < i-1 ) call quicksort_core_idx8_real_rp(key, ind, first, i-1)
315 if ( j+1 < last ) call quicksort_core_idx8_real_rp(key, ind, j+1, last)
316
317 return
318 end subroutine quicksort_core_idx8_real_rp
319end module scale_quicksort
module common / sort algorithm