14#include "scaleFElib.h"
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
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)
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)
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)
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)
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)
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)
92 call quicksort_core_idx8_real_rp(val, indx, 1, npoints)
93 end subroutine quicksort_exec_with_idx8_real_rp
97 recursive subroutine quicksort_core_idx4_int4(key, ind, first, last)
100 integer(kind=4),
intent(inout) :: key(:)
101 integer(kind=4),
intent(inout) :: ind(:)
102 integer,
intent(in) :: first, last
104 integer(kind=4) :: x, tmp
106 integer(kind=4) :: tmp_ind
109 x = key( (first + last)/2 )
114 do while ( key(i) < x )
117 do while ( x < key(j) )
123 tmp = key(i); key(i) = key(j); key(j) = tmp
124 tmp_ind = ind(i); ind(i) = ind(j); ind(j) = tmp_ind
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)
133 end subroutine quicksort_core_idx4_int4
134 recursive subroutine quicksort_core_idx4_int8(key, ind, first, last)
137 integer(kind=8),
intent(inout) :: key(:)
138 integer(kind=4),
intent(inout) :: ind(:)
139 integer,
intent(in) :: first, last
141 integer(kind=8) :: x, tmp
143 integer(kind=4) :: tmp_ind
146 x = key( (first + last)/2 )
151 do while ( key(i) < x )
154 do while ( x < key(j) )
160 tmp = key(i); key(i) = key(j); key(j) = tmp
161 tmp_ind = ind(i); ind(i) = ind(j); ind(j) = tmp_ind
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)
170 end subroutine quicksort_core_idx4_int8
171 recursive subroutine quicksort_core_idx4_real_rp(key, ind, first, last)
174 real(RP),
intent(inout) :: key(:)
175 integer(kind=4),
intent(inout) :: ind(:)
176 integer,
intent(in) :: first, last
180 integer(kind=4) :: tmp_ind
183 x = key( (first + last)/2 )
188 do while ( key(i) < x )
191 do while ( x < key(j) )
197 tmp = key(i); key(i) = key(j); key(j) = tmp
198 tmp_ind = ind(i); ind(i) = ind(j); ind(j) = tmp_ind
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)
207 end subroutine quicksort_core_idx4_real_rp
208 recursive subroutine quicksort_core_idx8_int4(key, ind, first, last)
211 integer(kind=4),
intent(inout) :: key(:)
212 integer(kind=8),
intent(inout) :: ind(:)
213 integer,
intent(in) :: first, last
215 integer(kind=4) :: x, tmp
217 integer(kind=8) :: tmp_ind
220 x = key( (first + last)/2 )
225 do while ( key(i) < x )
228 do while ( x < key(j) )
234 tmp = key(i); key(i) = key(j); key(j) = tmp
235 tmp_ind = ind(i); ind(i) = ind(j); ind(j) = tmp_ind
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)
244 end subroutine quicksort_core_idx8_int4
245 recursive subroutine quicksort_core_idx8_int8(key, ind, first, last)
248 integer(kind=8),
intent(inout) :: key(:)
249 integer(kind=8),
intent(inout) :: ind(:)
250 integer,
intent(in) :: first, last
252 integer(kind=8) :: x, tmp
254 integer(kind=8) :: tmp_ind
257 x = key( (first + last)/2 )
262 do while ( key(i) < x )
265 do while ( x < key(j) )
271 tmp = key(i); key(i) = key(j); key(j) = tmp
272 tmp_ind = ind(i); ind(i) = ind(j); ind(j) = tmp_ind
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)
281 end subroutine quicksort_core_idx8_int8
282 recursive subroutine quicksort_core_idx8_real_rp(key, ind, first, last)
285 real(RP),
intent(inout) :: key(:)
286 integer(kind=8),
intent(inout) :: ind(:)
287 integer,
intent(in) :: first, last
291 integer(kind=8) :: tmp_ind
294 x = key( (first + last)/2 )
299 do while ( key(i) < x )
302 do while ( x < key(j) )
308 tmp = key(i); key(i) = key(j); key(j) = tmp
309 tmp_ind = ind(i); ind(i) = ind(j); ind(j) = tmp_ind
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)
318 end subroutine quicksort_core_idx8_real_rp
module common / sort algorithm