|  |  D.5.17.38 dualPartition Procedure from libraryschubert.lib(see  schubert_lib).
 
Example:Usage:
dualPartition(k,n,p); k int, n int, p list
Input:
two integers and a partition
Return:
list
Purpose:
compute the dual of a partition.
 See also:
 SchubertClass.|  | LIB "schubert.lib";
ring r = 0,(x),dp;
dualPartition(2,4,list(2,1));
==> [1]:
==>    1
==> [2]:
==>    0
 | 
 
 |