@@ -2988,15 +2988,15 @@ def normal_form(self, algorithm="palp", permutation=False):
2988
2988
We can perform the same examples using other algorithms::
2989
2989
2990
2990
sage: o = lattice_polytope.cross_polytope(2)
2991
- sage: o.normal_form(algorithm="palp_native")
2991
+ sage: o.normal_form(algorithm="palp_native") # optional - sage.groups
2992
2992
M( 1, 0),
2993
2993
M( 0, 1),
2994
2994
M( 0, -1),
2995
2995
M(-1, 0)
2996
2996
in 2-d lattice M
2997
2997
2998
2998
sage: o = lattice_polytope.cross_polytope(2)
2999
- sage: o.normal_form(algorithm="palp_modified")
2999
+ sage: o.normal_form(algorithm="palp_modified") # optional - sage.groups
3000
3000
M( 1, 0),
3001
3001
M( 0, 1),
3002
3002
M( 0, -1),
@@ -3054,13 +3054,13 @@ def _palp_modified_normal_form(self, permutation=False):
3054
3054
M(-1, 0),
3055
3055
M( 0, -1)
3056
3056
in 2-d lattice M
3057
- sage: o._palp_modified_normal_form() # optional - sage.graphs
3057
+ sage: o._palp_modified_normal_form() # optional - sage.graphs sage.groups
3058
3058
M( 1, 0),
3059
3059
M( 0, 1),
3060
3060
M( 0, -1),
3061
3061
M(-1, 0)
3062
3062
in 2-d lattice M
3063
- sage: o._palp_modified_normal_form(permutation=True) # optional - sage.graphs
3063
+ sage: o._palp_modified_normal_form(permutation=True) # optional - sage.graphs sage.groups
3064
3064
(M( 1, 0),
3065
3065
M( 0, 1),
3066
3066
M( 0, -1),
@@ -3159,7 +3159,7 @@ def _palp_PM_max(self, check=False):
3159
3159
sage: o = lattice_polytope.cross_polytope(2)
3160
3160
sage: PM = o.vertex_facet_pairing_matrix()
3161
3161
sage: PM_max = PM.permutation_normal_form() # optional - sage.graphs
3162
- sage: PM_max == o._palp_PM_max() # optional - sage.graphs
3162
+ sage: PM_max == o._palp_PM_max() # optional - sage.graphs sage.groups
3163
3163
True
3164
3164
sage: P2 = ReflexivePolytope(2, 0)
3165
3165
sage: PM_max, permutations = P2._palp_PM_max(check=True)
0 commit comments