@@ -1176,9 +1176,9 @@ def affine_hull_projection(self,
1176
1176
A vertex at (2, 0, 0),
1177
1177
A vertex at (1, 3/2, 0),
1178
1178
A vertex at (1, 1/2, 4/3))
1179
- sage: A = S.affine_hull_projection(orthonormal=True, extend=True); A
1179
+ sage: A = S.affine_hull_projection(orthonormal=True, extend=True); A # optional - sage.rings.number_field
1180
1180
A 3-dimensional polyhedron in AA^3 defined as the convex hull of 4 vertices
1181
- sage: A.vertices()
1181
+ sage: A.vertices() # optional - sage.rings.number_field
1182
1182
(A vertex at (0.7071067811865475?, 0.4082482904638630?, 1.154700538379252?),
1183
1183
A vertex at (0.7071067811865475?, 1.224744871391589?, 0.?e-18),
1184
1184
A vertex at (1.414213562373095?, 0.?e-18, 0.?e-18),
@@ -1187,11 +1187,11 @@ def affine_hull_projection(self,
1187
1187
With the parameter ``minimal`` one can get a minimal base ring::
1188
1188
1189
1189
sage: s = polytopes.simplex(3)
1190
- sage: s_AA = s.affine_hull_projection(orthonormal=True, extend=True)
1191
- sage: s_AA.base_ring()
1190
+ sage: s_AA = s.affine_hull_projection(orthonormal=True, extend=True) # optional - sage.rings.number_field
1191
+ sage: s_AA.base_ring() # optional - sage.rings.number_field
1192
1192
Algebraic Real Field
1193
- sage: s_full = s.affine_hull_projection(orthonormal=True, extend=True, minimal=True)
1194
- sage: s_full.base_ring()
1193
+ sage: s_full = s.affine_hull_projection(orthonormal=True, extend=True, minimal=True) # optional - sage.rings.number_field
1194
+ sage: s_full.base_ring() # optional - sage.rings.number_field
1195
1195
Number Field in a with defining polynomial y^4 - 4*y^2 + 1 with a = 0.5176380902050415?
1196
1196
1197
1197
More examples with the ``orthonormal`` parameter::
0 commit comments