Hello. When installing the InvariantRing package with Macaulay2 1.25.06, I get a number of warnings such as the following one:
-- warning: ambiguous reference "InvariantRing :: generators(...,CoefficientRing=>...)" and "Macaulay2Doc :: generators(Ring)" when processsing InvariantRing/FiniteGroupsDoc.m2:104:0
This is likely caused by our function:
generators FiniteGroupAction := opts -> G -> G.generators
which is documented in InvariantRing/FiniteGroupsDoc.m2 as follows:
document {
Key => {(generators, FiniteGroupAction)},
Headline => "generators of a finite group",
Usage => "generators G",
Inputs => {
"G" => FiniteGroupAction =>
{"the action of a finite group"},
},
Outputs => {
List => {"a list of generators of the group"}
},
"This function is provided by the package ", TO InvariantRing,". ",
PARA {
"Use this function to get the user-defined
generators of a group action."
},
PARA { "The following example defines the permutation action
of a symmetric group on three elements using three
transpositions." },
EXAMPLE {
"R = QQ[x_1..x_3]",
"L = {matrix {{0,1,0},{1,0,0},{0,0,1}}, matrix {{0,0,1},{0,1,0},{1,0,0}}, matrix {{1,0,0},{0,0,1},{0,1,0}} }",
"G = finiteAction(L, R)",
"generators G"
},
}
Any thoughts on how to fix this?
Thanks!