|
PLUTO
|
Internal routine to sort an integer array. More...
Go to the source code of this file.
Macros | |
| #define | swapi_(a, b) ( temp=(a), (a)=(b), (b)=temp) |
Functions | |
| int | AL_Sort_ (int n, int *in, int *ind) |
Internal routine to sort an integer array.
Internal routine to sort an integer array
Definition in file al_sort_.c.
Definition at line 12 of file al_sort_.c.
| int AL_Sort_ | ( | int | n, |
| int * | in, | ||
| int * | ind | ||
| ) |
Sort and array of integers
This is a really simple implementation, since we do not really use this for large arrays.
| [in] | n | size of input array (integer) |
| [in] | in | input array |
| [in] | ind | array of the sorted index arrays (max to min) |
Definition at line 15 of file al_sort_.c.
