-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: vertices documentation and references
- Loading branch information
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ julia> ambient_dim(PC) | |
ambient_dim(PC::PolyhedralComplex) = Polymake.fan.ambient_dim(pm_object(PC))::Int | ||
|
||
@doc raw""" | ||
vertices([as::Type{T} = PointVector,] PC::PolyhedralComplex) | ||
vertices(as::Type{PointVector{T}}, PC::PolyhedralComplex{T}) where {T<:scalar_types} | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
YueRen
Author
Member
|
||
Return an iterator over the vertices of `PC` in the format defined by `as`. The | ||
vertices are defined to be the zero-dimensional faces, so if `P` has lineality, | ||
|
@@ -253,7 +253,7 @@ translation `p+L`, where `p` is only unique modulo `L`. The return type is a | |
dict, the key `:base_points` gives an iterator over such `p`, and the key | ||
`:lineality_basis` lets one access a basis for the lineality space `L` of `PC`. | ||
See also [`vertices`](@ref) and [`lineality_space`](@ref). | ||
See also [`vertices(as::Type{PointVector{T}}, PC::PolyhedralComplex{T}) where {T<:scalar_types}`](@ref) and [`lineality_space`](@ref). | ||
# Examples | ||
```jldoctest | ||
|
This change shouldn't be necessary, see my comment in #4009