1
0
mirror of https://github.com/kalmarek/Groups.jl.git synced 2024-07-12 01:35:30 +02:00

docstring for gens function

This commit is contained in:
kalmar 2017-07-06 09:05:24 +02:00
parent 392214b697
commit 4b68fe745f

View File

@ -135,6 +135,11 @@ doc"""
""" """
reduce(W::GWord) = reduce!(deepcopy(W)) reduce(W::GWord) = reduce!(deepcopy(W))
doc"""
gens(G::AbstractFPGroups)
> returns vector of generators of `G`, as its elements.
"""
gens(G::FPGroup) = [G(g) for g in G.gens] gens(G::FPGroup) = [G(g) for g in G.gens]
############################################################################### ###############################################################################