|
3 | 3 | ## DeclareOperations( "CombinatorialMap", [ size, ordering, pairing, markededge ] ) |
4 | 4 | ## |
5 | 5 | ## Returns the combinatorial map defined by the set consisting of <size> |
6 | | -## elemenst, the ordering of the half edges given by <ordering>, the |
| 6 | +## elements, the ordering of the half edges given by <ordering>, the |
7 | 7 | ## paring of the half edges given by the <paring>, and the marked half-edges given |
8 | 8 | ## by <markededge>. The size of the underlying set given by <size> is given |
9 | 9 | ## a positive integer, the ordering and the pairing are given by two |
|
14 | 14 |
|
15 | 15 | InstallMethod( CombinatorialMap, |
16 | 16 |
|
17 | | - "for positive integer, two permutaions and a list", |
| 17 | + "for positive integer, two permutations and a list", |
18 | 18 |
|
19 | 19 | [ IsPosInt, IsPerm, IsPerm, IsList ], |
20 | 20 |
|
|
399 | 399 | ## |
400 | 400 | ## DeclareAttribute( "BoundaryCurvesOfCombinatorialMap", map) |
401 | 401 | ## |
402 | | -## Returns a list whose elements are lists of half-edges of the combiantorial map <map>. Each of these |
| 402 | +## Returns a list whose elements are lists of half-edges of the combinatorial map <map>. Each of these |
403 | 403 | ## lists corresponds to a closed curve homotopic to a boundary component of the |
404 | 404 | ## surface represented by <map>. The closed curves are represented by a list of adjacent half-edges. |
405 | 405 | ## The orientation of these curves is chosen so that the corresponding boundary component |
|
748 | 748 | ## |
749 | 749 |
|
750 | 750 | InstallMethod( JoinCurveCombinatorialMap, |
751 | | - "For a CombinatorialMap and two lists detailling the boudaries to join, returns a list corresponding to a simple curve joining the two boundaries, starting and ending at vertices that are identified in the original CombinatorialMap.", |
| 751 | + "For a CombinatorialMap and two lists detailing the boundaries to join, returns a list corresponding to a simple curve joining the two boundaries, starting and ending at vertices that are identified in the original CombinatorialMap.", |
752 | 752 | [IsCombinatorialMap, IsList, IsList, IsList], |
753 | 753 |
|
754 | 754 | function(combmap,bound1,bound2, index) |
|
803 | 803 |
|
804 | 804 |
|
805 | 805 | InstallMethod( CutJoinCurveCombinatorialMap, |
806 | | - " for a CombinatorialMap, two lists detailling boundaries, a list of arcs joining these boundaries and an index for the half-edges, returns the CombinatorialMap obtained by cutting the surface along the curve joining the two boundaries and the updated index corresponding to the cut.", |
| 806 | + " for a CombinatorialMap, two lists detailing boundaries, a list of arcs joining these boundaries and an index for the half-edges, returns the CombinatorialMap obtained by cutting the surface along the curve joining the two boundaries and the updated index corresponding to the cut.", |
807 | 807 | [IsCombinatorialMap, IsList, IsList,IsList,IsList], |
808 | 808 |
|
809 | 809 | function(combmap,bound1,bound2,curve,index) |
|
0 commit comments