Go to the source code of this file.
|
module | sort_oct_m |
| This module is intended to contain "only mathematical" functions and procedures.
|
|
|
interface | sort_oct_m::sort |
| This is the common interface to a sorting routine. It performs the shell algorithm, not as fast as the quicksort for large numbers, but it seems that better for moderate numbers (around 100). Their possible interfaces are: subroutine sort(a [, ind]) real(real64),_OR_INTEGER, intent(inout) :: a(:) integer, intent(inout), optional :: ind(:) ! This routine sorts, from smallest to largest, the array a. ! If the integer array ind is present, it puts in it the indexing ! of the sorting, so that other arrays can be sorted according to ! the sorting of a. end subroutine sort. More...
|
|
interface | sort_oct_m::dsort1 |
| from sort_low.cc More...
|
|
interface | sort_oct_m::dsort2 |
|
interface | sort_oct_m::isort1 |
|
interface | sort_oct_m::isort2 |
|
interface | sort_oct_m::lsort1 |
|
interface | sort_oct_m::lsort2 |
|