Changes between Initial Version and Version 11 of Ticket #26922
- Timestamp:
- 10/22/19 12:46:11 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #26922
-
Property
Status
changed from
new
toneeds_review
-
Property
Authors
changed from
to
Jonathan Kliem
-
Property
Dependencies
changed from
to
#28625
-
Property
Branch
changed from
to
public/26922
-
Property
Milestone
changed from
sage-8.6
tosage-9.0
-
Property
Commit
changed from
to
cbcc4c42cb427c2967097098d00a771a6d47eb44
-
Property
Status
changed from
-
Ticket #26922 – Description
initial v11 1 #28625 fixed the `f_vector` in the case of unpointed polyhedra/polyhedra with lines. 2 3 We add doctests showing that #28625 fixed a bug in `f_vector`. 4 5 Before: 1 6 {{{ 2 7 sage: Polyhedron(ieqs=[[1,-1,0],[1,1,0]]).f_vector() 3 8 (1, 2, 1) 4 9 }}} 5 This polyhedron does not have zero-dimensional faces, does it? 10 11 But this polyhedron does not have zero-dimensional faces, and #28625 has correctly changed that: 12 {{{ 13 sage: Polyhedron(ieqs=[[1,-1,0],[1,1,0]]).f_vector() 14 (1, 0, 2, 1) 15 }}} 16 17 Also we add documentation, specifically warning users that the methods 18 - `vertices`, 19 - `vertices_list`, 20 - `vertices_generator` 21 - `vertices_matrix`, 22 - `n_vertices`, 23 treat vertices of the `Vrepresentation` and not vertices of the polyhedron in the unpointed case.