|
43 | 43 |
|
44 | 44 | .. NOTE::
|
45 | 45 |
|
46 |
| - IMPORTANT: PALP requires some parameters to be determined during |
47 |
| - compilation time, i.e., the maximum dimension of polytopes, the |
48 |
| - maximum number of points, etc. These limitations may lead to errors |
49 |
| - during calls to different functions of these module. Currently, a |
50 |
| - :exc:`ValueError` exception will be raised if the output of ``poly.x`` |
51 |
| - or ``nef.x`` is empty or contains the exclamation mark. The error |
52 |
| - message will contain the exact command that caused an error, the |
53 |
| - description and vertices of the polytope, and the obtained output. |
| 46 | + IMPORTANT: PALP requires some parameters to be determined during |
| 47 | + compilation time, i.e., the maximum dimension of polytopes, the |
| 48 | + maximum number of points, etc. These limitations may lead to errors |
| 49 | + during calls to different functions of these module. Currently, a |
| 50 | + :exc:`ValueError` exception will be raised if the output of ``poly.x`` |
| 51 | + or ``nef.x`` is empty or contains the exclamation mark. The error |
| 52 | + message will contain the exact command that caused an error, the |
| 53 | + description and vertices of the polytope, and the obtained output. |
54 | 54 |
|
55 | 55 | Data obtained from PALP and some other data is cached and most
|
56 | 56 | returned values are immutable. In particular, you cannot change the
|
@@ -360,16 +360,16 @@ def ReflexivePolytope(dim, n):
|
360 | 360 |
|
361 | 361 | .. NOTE::
|
362 | 362 |
|
363 |
| - #. Numeration starts with zero: `0 \leq n \leq 15` for `{\rm dim} = 2` |
364 |
| - and `0 \leq n \leq 4318` for `{\rm dim} = 3`. |
| 363 | + #. Numeration starts with zero: `0 \leq n \leq 15` for `{\rm dim} = 2` |
| 364 | + and `0 \leq n \leq 4318` for `{\rm dim} = 3`. |
365 | 365 |
|
366 |
| - #. During the first call, all reflexive polytopes of requested |
367 |
| - dimension are loaded and cached for future use, so the first |
368 |
| - call for 3-dimensional polytopes can take several seconds, |
369 |
| - but all consecutive calls are fast. |
| 366 | + #. During the first call, all reflexive polytopes of requested |
| 367 | + dimension are loaded and cached for future use, so the first |
| 368 | + call for 3-dimensional polytopes can take several seconds, |
| 369 | + but all consecutive calls are fast. |
370 | 370 |
|
371 |
| - #. Equivalent to ``ReflexivePolytopes(dim)[n]`` but checks bounds |
372 |
| - first. |
| 371 | + #. Equivalent to ``ReflexivePolytopes(dim)[n]`` but checks bounds |
| 372 | + first. |
373 | 373 |
|
374 | 374 | EXAMPLES:
|
375 | 375 |
|
@@ -420,9 +420,9 @@ def ReflexivePolytopes(dim):
|
420 | 420 |
|
421 | 421 | .. NOTE::
|
422 | 422 |
|
423 |
| - During the first call the database is loaded and cached for |
424 |
| - future use, so repetitive calls will return the same object in |
425 |
| - memory. |
| 423 | + During the first call the database is loaded and cached for |
| 424 | + future use, so repetitive calls will return the same object in |
| 425 | + memory. |
426 | 426 |
|
427 | 427 | INPUT:
|
428 | 428 |
|
@@ -970,14 +970,14 @@ def _palp(self, command, reduce_dimension=False):
|
970 | 970 | r"""
|
971 | 971 | Run ``command`` on vertices of this polytope.
|
972 | 972 |
|
973 |
| - Returns the output of ``command`` as a string. |
| 973 | + This returns the output of ``command`` as a string. |
974 | 974 |
|
975 | 975 | .. NOTE::
|
976 | 976 |
|
977 |
| - PALP cannot be called for polytopes that do not span the ambient space. |
978 |
| - If you specify ``reduce_dimension=True`` argument, PALP will be |
979 |
| - called for vertices of this polytope in some basis of the affine space |
980 |
| - it spans. |
| 977 | + PALP cannot be called for polytopes that do not span the |
| 978 | + ambient space. If you specify ``reduce_dimension=True`` |
| 979 | + argument, PALP will be called for vertices of this |
| 980 | + polytope in some basis of the affine space it spans. |
981 | 981 |
|
982 | 982 | TESTS::
|
983 | 983 |
|
@@ -1409,13 +1409,14 @@ def affine_transform(self, a=1, b=0):
|
1409 | 1409 |
|
1410 | 1410 | .. NOTE::
|
1411 | 1411 |
|
1412 |
| - #. While ``a`` and ``b`` may be rational, the final result must be a |
1413 |
| - lattice polytope, i.e. all vertices must be integral. |
| 1412 | + #. While ``a`` and ``b`` may be rational, the final result |
| 1413 | + must be a lattice polytope, i.e. all vertices must be integral. |
1414 | 1414 |
|
1415 |
| - #. If the transform (restricted to this polytope) is bijective, facial |
1416 |
| - structure will be preserved, e.g. the first facet of the image will |
1417 |
| - be spanned by the images of vertices which span the first facet of |
1418 |
| - the original polytope. |
| 1415 | + #. If the transform (restricted to this polytope) is |
| 1416 | + bijective, facial structure will be preserved, e.g. the |
| 1417 | + first facet of the image will be spanned by the images |
| 1418 | + of vertices which span the first facet of the original |
| 1419 | + polytope. |
1419 | 1420 |
|
1420 | 1421 | INPUT:
|
1421 | 1422 |
|
@@ -1496,6 +1497,8 @@ def affine_transform(self, a=1, b=0):
|
1496 | 1497 | r._original = self
|
1497 | 1498 | return r
|
1498 | 1499 |
|
| 1500 | + linear_transformation = affine_transform |
| 1501 | + |
1499 | 1502 | def ambient(self):
|
1500 | 1503 | r"""
|
1501 | 1504 | Return the ambient structure of ``self``.
|
@@ -2396,10 +2399,10 @@ def incidence_matrix(self):
|
2396 | 2399 |
|
2397 | 2400 | .. NOTE::
|
2398 | 2401 |
|
2399 |
| - The columns correspond to facets/facet normals |
2400 |
| - in the order of :meth:`facet_normals`, the rows |
2401 |
| - correspond to the vertices in the order of |
2402 |
| - :meth:`vertices`. |
| 2402 | + The columns correspond to facets/facet normals |
| 2403 | + in the order of :meth:`facet_normals`, the rows |
| 2404 | + correspond to the vertices in the order of |
| 2405 | + :meth:`vertices`. |
2403 | 2406 |
|
2404 | 2407 | EXAMPLES::
|
2405 | 2408 |
|
@@ -2450,9 +2453,9 @@ def index(self):
|
2450 | 2453 |
|
2451 | 2454 | .. NOTE::
|
2452 | 2455 |
|
2453 |
| - The first call to this function for each dimension can take |
2454 |
| - a few seconds while the dictionary of all polytopes is |
2455 |
| - constructed, but after that it is cached and fast. |
| 2456 | + The first call to this function for each dimension can take |
| 2457 | + a few seconds while the dictionary of all polytopes is |
| 2458 | + constructed, but after that it is cached and fast. |
2456 | 2459 |
|
2457 | 2460 | :rtype: integer
|
2458 | 2461 |
|
@@ -4972,15 +4975,15 @@ def _palp(command, polytopes, reduce_dimension=False):
|
4972 | 4975 | Run ``command`` on vertices of given
|
4973 | 4976 | ``polytopes``.
|
4974 | 4977 |
|
4975 |
| - Returns the name of the file containing the output of |
| 4978 | + This returns the name of the file containing the output of |
4976 | 4979 | ``command``. You should delete it after using.
|
4977 | 4980 |
|
4978 | 4981 | .. NOTE::
|
4979 | 4982 |
|
4980 |
| - PALP cannot be called for polytopes that do not span the ambient space. |
4981 |
| - If you specify ``reduce_dimension=True`` argument, PALP will be |
4982 |
| - called for vertices of this polytope in some basis of the affine space |
4983 |
| - it spans. |
| 4983 | + PALP cannot be called for polytopes that do not span the |
| 4984 | + ambient space. If you specify ``reduce_dimension=True`` |
| 4985 | + argument, PALP will be called for vertices of this polytope in |
| 4986 | + some basis of the affine space it spans. |
4984 | 4987 |
|
4985 | 4988 | TESTS::
|
4986 | 4989 |
|
@@ -5436,8 +5439,8 @@ def convex_hull(points):
|
5436 | 5439 |
|
5437 | 5440 | .. NOTE::
|
5438 | 5441 |
|
5439 |
| - ``points`` might not span the space. Also, it fails for large |
5440 |
| - numbers of vertices in dimensions 4 or greater |
| 5442 | + ``points`` might not span the space. Also, it fails for large |
| 5443 | + numbers of vertices in dimensions 4 or greater |
5441 | 5444 |
|
5442 | 5445 | INPUT:
|
5443 | 5446 |
|
@@ -5511,7 +5514,7 @@ def minkowski_sum(points1, points2):
|
5511 | 5514 |
|
5512 | 5515 | .. NOTE::
|
5513 | 5516 |
|
5514 |
| - Polytopes might not be of maximal dimension. |
| 5517 | + Polytopes might not be of maximal dimension. |
5515 | 5518 |
|
5516 | 5519 | INPUT:
|
5517 | 5520 |
|
|
0 commit comments