@@ -131,7 +131,7 @@ Letters are compared by their positions in *alphabet*.
131131 R"pbdoc(
132132:sig=(x: str | list[int], y: str | list[int]) -> bool:
133133:only-document-once:
134- Compare two words using len-lex ordering.
134+ Compare two words using lenlex ordering.
135135
136136Words are first ordered by length and then lexicographically.
137137
@@ -162,7 +162,7 @@ Words are first ordered by length and then lexicographically.
162162 R"pbdoc(
163163:sig=(alphabet: Alphabet, x: str | list[int], y: str | list[int]) -> bool:
164164:only-document-once:
165- Compare two words using len-lex ordering and an alphabet.
165+ Compare two words using lenlex ordering and an alphabet.
166166
167167Words are first ordered by length and then lexicographically, with letters
168168compared by their positions in *alphabet*.
@@ -255,7 +255,7 @@ from right to left before being compared.
255255 R"pbdoc(
256256:sig=(x: str | list[int], y: str | list[int]) -> bool:
257257:only-document-once:
258- Compare two words using reversed len-lex ordering.
258+ Compare two words using reversed lenlex ordering.
259259
260260Words are first ordered by length and then lexicographically after being read
261261from right to left.
@@ -285,7 +285,7 @@ from right to left.
285285 R"pbdoc(
286286:sig=(alphabet: Alphabet, x: str | list[int], y: str | list[int]) -> bool:
287287:only-document-once:
288- Compare two words using alphabet-aware reversed len-lex ordering.
288+ Compare two words using alphabet-aware reversed lenlex ordering.
289289
290290Words are first ordered by length and then lexicographically after being read
291291from right to left. Letters are compared by their positions in *alphabet*.
@@ -320,7 +320,7 @@ from right to left. Letters are compared by their positions in *alphabet*.
320320 R"pbdoc(
321321:sig=(weights: list[int], x: str | list[int], y: str | list[int]) -> bool:
322322:only-document-once:
323- Compare two words using weighted len-lex ordering.
323+ Compare two words using weighted lenlex ordering.
324324
325325The *i*-th entry of *weights* is the weight assigned to generator *i*.
326326Words are first ordered by their total weight, then by length, and finally
@@ -357,7 +357,7 @@ lexicographically.
357357 R"pbdoc(
358358:sig=(alphabet: Alphabet, weights: list[int], x: str | list[int], y: str | list[int]) -> bool:
359359:only-document-once:
360- Compare two words using alphabet-aware weighted len-lex ordering.
360+ Compare two words using alphabet-aware weighted lenlex ordering.
361361
362362Letters are mapped to their positions in *alphabet*, and the *i*-th entry of
363363*weights* is the weight assigned to the *i*-th letter of *alphabet*. Words are
@@ -621,7 +621,7 @@ Letters are mapped to their positions in *alphabet*, and the *i*-th entry of
621621 R"pbdoc(
622622:sig=(weights: list[int], x: str | list[int], y: str | list[int]) -> bool:
623623:only-document-once:
624- Compare two words using reversed weighted len-lex ordering.
624+ Compare two words using reversed weighted lenlex ordering.
625625
626626Words are first ordered by total weight, then by length, and finally
627627lexicographically after being read from right to left. The *i*-th entry of
@@ -660,7 +660,7 @@ lexicographically after being read from right to left. The *i*-th entry of
660660 R"pbdoc(
661661:sig=(alphabet: Alphabet, weights: list[int], x: str | list[int], y: str | list[int]) -> bool:
662662:only-document-once:
663- Compare two words using alphabet-aware reversed weighted len-lex ordering.
663+ Compare two words using alphabet-aware reversed weighted lenlex ordering.
664664
665665Letters are mapped to their positions in *alphabet*, and the *i*-th entry of
666666*weights* is the weight assigned to the *i*-th letter of *alphabet*. Words are
@@ -993,7 +993,7 @@ left, with letters compared by their positions in *alphabet*.
993993 R"pbdoc(
994994:sig=(weights: list[int], x: str | list[int], y: str | list[int]) -> bool:
995995:only-document-once:
996- Compare two words using weighted len-lex ordering.
996+ Compare two words using weighted lenlex ordering.
997997
998998The *i*-th entry of *weights* is the weight assigned to generator *i*.
999999Words are first ordered by their total weight, then by length, and finally
@@ -1030,7 +1030,7 @@ lexicographically.
10301030 R"pbdoc(
10311031:sig=(alphabet: Alphabet, weights: list[int], x: str | list[int], y: str | list[int]) -> bool:
10321032:only-document-once:
1033- Compare two words using alphabet-aware weighted len-lex ordering.
1033+ Compare two words using alphabet-aware weighted lenlex ordering.
10341034
10351035Letters are mapped to their positions in *alphabet*, and the *i*-th entry of
10361036*weights* is the weight assigned to the *i*-th letter of *alphabet*. Words are
@@ -1166,7 +1166,7 @@ Compare two words using wreath-product ordering.
11661166
11671167The *i*-th entry of *levels* is the level assigned to generator *i*.
11681168Differences at higher levels dominate differences at lower levels, and
1169- differences within one level are compared using len-lex ordering.
1169+ differences within one level are compared using lenlex ordering.
11701170
11711171:param levels: the level assigned to each generator.
11721172:type levels: list[int]
@@ -1205,7 +1205,7 @@ Compare two words using alphabet-aware wreath-product ordering.
12051205Letters are mapped to their positions in *alphabet*, and the *i*-th entry of
12061206*levels* is the level assigned to the *i*-th letter of *alphabet*.
12071207Differences at higher levels dominate differences at lower levels, and
1208- differences within one level are compared using len-lex ordering.
1208+ differences within one level are compared using lenlex ordering.
12091209
12101210:param alphabet: the ordered alphabet containing the letters of both words.
12111211:type alphabet: Alphabet
@@ -1255,7 +1255,7 @@ respectively, in new code.
12551255.. py:attribute:: Order.lenlex
12561256 :value: <Order.right: 1>
12571257
1258- The len-lex ordering. Words are first ordered by length, and then
1258+ The lenlex ordering. Words are first ordered by length, and then
12591259 lexicographically.
12601260
12611261.. py:attribute:: Order.shortlex
0 commit comments