|  |  D.15.18.21 permutationToIntvec Procedure from librarygitfan.lib(see  gitfan_lib).
 
Example:Usage:
permutationToIntvec(sigma); sigma: permutation
Purpose:
Convert a permutation to an intvec of images.
Return:
intvec
 |  | LIB "gitfan.lib";
permutation sigma = permutationFromIntvec(intvec( 1, 2, 4, 3, 5, 7, 6, 9, 8, 10 ));
sigma;
==> |  1  2  3  4  5  6  7  8  9 10|
==> |  1  2  4  3  5  7  6  9  8 10|
==> 
permutationToIntvec(sigma);
==> 1,2,4,3,5,7,6,9,8,10
 | 
 
 |