Skip to content

Commit

Permalink
Fix constructors in order docstrings (#297)
Browse files Browse the repository at this point in the history
  • Loading branch information
blegat authored May 2, 2024
1 parent b6da6a1 commit 8a31f0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/comparison.jl
Original file line number Diff line number Diff line change
Expand Up @@ -295,10 +295,10 @@ Monomial ordering defined by
`compare(a, b, ::Type{Reverse{O}}) where {O} = compare(b, a, O)`.
Reverse Lex Order defined in [CLO13, Exercise 2.2.9, p. 61] where it is abbreviated as *rinvlex*.
can be obtained as `Reverse(InverseLexOrder())`.
can be obtained as `Reverse{InverseLexOrder}`.
The Graded Reverse Lex Order often abbreviated as *grevlex* order defined in [CLO13, Definition 2.2.6, p. 58]
can be obtained as `Graded(Reverse(InverseLexOrder()))`.
can be obtained as `Graded{Reverse{InverseLexOrder}}`.
[CLO13] Cox, D., Little, J., & OShea, D.
*Ideals, varieties, and algorithms: an introduction to computational algebraic geometry and commutative algebra*.
Expand Down

0 comments on commit 8a31f0a

Please sign in to comment.