Parametrized( list )
returns the parametrized cover of list, i.e. the parametrized map with
smallest indeterminateness that contains all maps in list.
Parametrized is the inverse function of ContainedMaps in the sense that
Parametrized( ContainedMaps( paramap ) ) = paramap.
gap> Parametrized( [ [ 1, 3, 4, 6, 8, 10, 11, 11, 15, 14 ],
> [ 1, 3, 4, 6, 8, 10, 11, 11, 14, 15 ],
> [ 1, 3, 4, 7, 8, 10, 12, 12, 15, 14 ],
> [ 1, 3, 4, 7, 8, 10, 12, 12, 14, 15 ] ] );
[ 1, 3, 4, [ 6, 7 ], 8, 10, [ 11, 12 ], [ 11, 12 ], [ 14, 15 ],
[ 14, 15 ] ]
GAP 3.4.4