-
-
Notifications
You must be signed in to change notification settings - Fork 491
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sage.geometry.polyhedron: Mark doctests # optional - sage.combinat #32653
Comments
Commit: |
Branch pushed to git repo; I updated commit sha1. This was a forced push. Last 10 new commits:
|
This comment has been minimized.
This comment has been minimized.
Branch pushed to git repo; I updated commit sha1. New commits:
|
comment:5
+ sage: P = polytopes.permutahedron(5) # optional - sage.rings.number_field
+ sage: C = CombinatorialPolyhedron(P) # optional - sage.rings.number_field
+ sage: it = C.face_iter(dimension=2) # optional - sage.rings.number_field
+ sage: face = next(it); face # optional - sage.rings.number_field
A 2-dimensional face of a 4-dimensional combinatorial polyhedron
- sage: face.ambient_Vrepresentation()
+ sage: face.ambient_Vrepresentation() # optional - sage.rings.number_field
(A vertex at (1, 3, 2, 5, 4),
A vertex at (2, 3, 1, 5, 4),
A vertex at (3, 1, 2, 5, 4),
A vertex at (3, 2, 1, 5, 4),
A vertex at (2, 1, 3, 5, 4),
A vertex at (1, 2, 3, 5, 4))
- sage: face = next(it); face
+ sage: face = next(it); face # optional - sage.rings.number_field
A 2-dimensional face of a 4-dimensional combinatorial polyhedron
- sage: face.ambient_Vrepresentation()
+ sage: face.ambient_Vrepresentation() # optional - sage.rings.number_field
(A vertex at (2, 1, 4, 5, 3),
A vertex at (3, 2, 4, 5, 1),
A vertex at (3, 1, 4, 5, 2),
A vertex at (1, 3, 4, 5, 2),
A vertex at (1, 2, 4, 5, 3),
A vertex at (2, 3, 4, 5, 1))
- sage: face.ambient_Hrepresentation()
+ sage: face.ambient_Hrepresentation() # optional - sage.rings.number_field
(An inequality (0, 0, -1, -1, 0) x + 9 >= 0,
An inequality (0, 0, 0, -1, 0) x + 5 >= 0,
An equation (1, 1, 1, 1, 1) x - 15 == 0)
- sage: face.ambient_H_indices()
+ sage: face.ambient_H_indices() # optional - sage.rings.number_field
(25, 29, 30)
- sage: face = next(it); face
+ sage: face = next(it); face # optional - sage.rings.number_field
A 2-dimensional face of a 4-dimensional combinatorial polyhedron
- sage: face.ambient_H_indices()
+ sage: face.ambient_H_indices() # optional - sage.rings.number_field
(24, 29, 30)
- sage: face.ambient_V_indices()
+ sage: face.ambient_V_indices() # optional - sage.rings.number_field Is this correct? |
Reviewer: Jonathan Kliem |
comment:7
No, I'll have to fix this one - a lapse of concentration |
Branch pushed to git repo; I updated commit sha1. New commits:
|
comment:9
There is one example in You can either fix it or leave it as it is. Either way, you can put it on positive review on my behalf. |
comment:10
let's just keep it here - thanks! |
Changed branch from u/mkoeppe/sage_geometry_polyhedron__mark_doctests___optional___sage_combinat to |
(cherry-picked from #32432)
Depends on #32614
CC: @kliem
Component: refactoring
Author: Matthias Koeppe
Branch/Commit:
3acc6a9
Reviewer: Jonathan Kliem
Issue created by migration from https://trac.sagemath.org/ticket/32653
The text was updated successfully, but these errors were encountered: