Skip to content

Commit

Permalink
fixed broken links for isNormal
Browse files Browse the repository at this point in the history
  • Loading branch information
mahrud committed Sep 11, 2024
1 parent 730310f commit f12fdf7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion M2/Macaulay2/packages/AssociativeAlgebras/doc.m2
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ doc ///
Text
The normal elements in degree 2 are x^2, y^2 and z^2. The basis
calculation shows y^2 and z^2 are normal forms in B. The normalElements
method first checks all basis monomials using @ TO isNormal @. In this case
method first checks all basis monomials using @ TO (isNormal, RingElement)@. In this case
it finds y^2 and z^2 are normal and returns this information. However,
x^2 is not a normal form expression. The normal form of x^2 is y*z+z*y. In
the second phase of the calculation, the method returns generators of the
Expand Down
6 changes: 5 additions & 1 deletion M2/Macaulay2/packages/Macaulay2Doc/shared.m2
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@ document { Key => isVeryAmple, methodstr, SeeAlso => {
"Divisor::isVeryAmple(WeilDivisor)", "Polyhedra::isVeryAmple(Polyhedron)",
"PositivityToricBundles::isVeryAmple(ToricVectorBundleKlyachko)",
"NormalToricVarieties::isVeryAmple(ToricDivisor)" } }
document { Key => isNormal, methodstr, SeeAlso => { "Polyhedra::isNormal(Polyhedron)","IntegralClosure::isNormal(Ring)"} }
document { Key => isNormal, methodstr, SeeAlso => {
"Polyhedra::isNormal(Polyhedron)",
"IntegralClosure::isNormal(Ring)",
"AssociativeAlgebras::isNormal(RingElement)",
} }
document { Key => normalCone, methodstr, SeeAlso => { "Polyhedra::normalCone(Polyhedron,Polyhedron)","ReesAlgebra::normalCone(Ideal)"} }


Expand Down
2 changes: 1 addition & 1 deletion M2/Macaulay2/packages/NCAlgebra/NCAlgebraDoc.m2
Original file line number Diff line number Diff line change
Expand Up @@ -2487,7 +2487,7 @@ doc ///
Text
The normal elements in degree 2 are x^2, y^2 and z^2. The basis
calculation shows x^2 and y^2 are normal forms in B. The normalElements
method first checks all basis monomials using @ TO isNormal @. In this case
method first checks all basis monomials using @ TO (isNormal, NCRingElement)@. In this case
it finds x^2 and y^2 are normal and returns this information. However,
z^2 is not a normal form expression. The normal form of z^2 is x*y+y*x. In
the second phase of the calculation, the method returns generators of the
Expand Down

0 comments on commit f12fdf7

Please sign in to comment.