Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
fix flags for snub cube
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Kliem committed Jun 20, 2020
1 parent c17428a commit b7eecfb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sage/geometry/polyhedron/library.py
Original file line number Diff line number Diff line change
Expand Up @@ -1323,7 +1323,7 @@ def snub_cube(self, exact=False, base_ring=None, backend=None, verbose=False):
A 3-dimensional polyhedron in RDF^3 defined as the convex hull of 24 vertices
sage: sc_inexact.f_vector()
(1, 24, 60, 38, 1)
sage: sc_exact = polytopes.snub_cube(exact=True) # long time - 30secs
sage: sc_exact = polytopes.snub_cube(exact=True) # long time
sage: sc_exact.f_vector() # long time
(1, 24, 60, 38, 1)
sage: sorted(sc_exact.vertices()) # long time
Expand Down Expand Up @@ -1351,7 +1351,7 @@ def snub_cube(self, exact=False, base_ring=None, backend=None, verbose=False):
A vertex at (1, -z^2, -z),
A vertex at (1, z^2, z),
A vertex at (1, z, -z^2)]
sage: sc_exact.is_combinatorially_isomorphic(sc_inexact) #long time
sage: sc_exact.is_combinatorially_isomorphic(sc_inexact) # long time
True
TESTS::
Expand Down

0 comments on commit b7eecfb

Please sign in to comment.