Sorts a list into assending order using the heap sort method.
More...
|
subroutine | list_sort_heap_intg1_array (A, ERR, ERROR,) |
| Sorts an integer array of data dimension 1 list into assending order using the heap sort method. More...
|
|
subroutine | list_sort_heap_intg2_array (A, KEY_DIMENSION, ERR, ERROR,) |
| Sorts an integer array of data dimension > 1 list into assending order using the heap sort method. More...
|
|
subroutine | list_sort_heap_sp1_array (A, ERR, ERROR,) |
| Sorts a real single precision array of data dimension 1 list into assending order using the heap sort method. More...
|
|
subroutine | list_sort_heap_sp2_array (A, KEY_DIMENSION, ERR, ERROR,) |
| Sorts a real single precision array of data dimension > 1 list into assending order using the heap sort method. More...
|
|
subroutine | list_sort_heap_dp1_array (A, ERR, ERROR,) |
| Sorts a real double precision array of data dimension 1 list into assending order using the heap sort method. More...
|
|
subroutine | list_sort_heap_dp2_array (A, KEY_DIMENSION, ERR, ERROR,) |
| Sorts a real double precision array of data dimension > 1 list into assending order using the heap sort method. More...
|
|
Sorts a list into assending order using the heap sort method.
Definition at line 293 of file lists.f90.
subroutine lists::list_sortheap::list_sort_heap_dp1_array |
( |
real(dp), dimension(:), intent(inout) |
A, |
|
|
integer(intg), intent(out) |
ERR, |
|
|
type(varying_string), intent(out) |
ERROR |
|
) |
| |
|
private |
Sorts a real double precision array of data dimension 1 list into assending order using the heap sort method.
- Parameters
-
[in,out] | a | The list to sort |
[out] | err | The error code |
[out] | error | The error string |
Definition at line 4155 of file lists.f90.
subroutine lists::list_sortheap::list_sort_heap_dp2_array |
( |
real(dp), dimension(:,:), intent(inout) |
A, |
|
|
integer(intg), intent(in) |
KEY_DIMENSION, |
|
|
integer(intg), intent(out) |
ERR, |
|
|
type(varying_string), intent(out) |
ERROR |
|
) |
| |
|
private |
Sorts a real double precision array of data dimension > 1 list into assending order using the heap sort method.
- Parameters
-
[in,out] | a | The list to sort |
[in] | key_dimension | The key dimension of A to do the sort on |
[out] | err | The error code |
[out] | error | The error string |
Definition at line 4212 of file lists.f90.
subroutine lists::list_sortheap::list_sort_heap_intg1_array |
( |
integer(intg), dimension(:), intent(inout) |
A, |
|
|
integer(intg), intent(out) |
ERR, |
|
|
type(varying_string), intent(out) |
ERROR |
|
) |
| |
|
private |
Sorts an integer array of data dimension 1 list into assending order using the heap sort method.
- Parameters
-
[in,out] | a | The list to sort |
[out] | err | The error code |
[out] | error | The error string |
Definition at line 3791 of file lists.f90.
subroutine lists::list_sortheap::list_sort_heap_intg2_array |
( |
integer(intg), dimension(:,:), intent(inout) |
A, |
|
|
integer(intg), intent(in) |
KEY_DIMENSION, |
|
|
integer(intg), intent(out) |
ERR, |
|
|
type(varying_string), intent(out) |
ERROR |
|
) |
| |
|
private |
Sorts an integer array of data dimension > 1 list into assending order using the heap sort method.
- Parameters
-
[in,out] | a | The list to sort |
[in] | key_dimension | The key dimension of A to do the sort on |
[out] | err | The error code |
[out] | error | The error string |
Definition at line 3847 of file lists.f90.
subroutine lists::list_sortheap::list_sort_heap_sp1_array |
( |
real(sp), dimension(:), intent(inout) |
A, |
|
|
integer(intg), intent(out) |
ERR, |
|
|
type(varying_string), intent(out) |
ERROR |
|
) |
| |
|
private |
Sorts a real single precision array of data dimension 1 list into assending order using the heap sort method.
- Parameters
-
[in,out] | a | The list to sort |
[out] | err | The error code |
[out] | error | The error string |
Definition at line 4033 of file lists.f90.
subroutine lists::list_sortheap::list_sort_heap_sp2_array |
( |
real(sp), dimension(:,:), intent(inout) |
A, |
|
|
integer(intg), intent(in) |
KEY_DIMENSION, |
|
|
integer(intg), intent(out) |
ERR, |
|
|
type(varying_string), intent(out) |
ERROR |
|
) |
| |
|
private |
Sorts a real single precision array of data dimension > 1 list into assending order using the heap sort method.
- Parameters
-
[in,out] | a | The list to sort |
[in] | key_dimension | The key dimension of A to do the sort on |
[out] | err | The error code |
[out] | error | The error string |
Definition at line 4090 of file lists.f90.