Skip to content

Commit 0e4031e

Browse files
committed
Fix
1 parent 285a6a3 commit 0e4031e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/commutative/comparison.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,10 +150,10 @@
150150
Mod.@polyvar x y z monomial_order = M
151151
# [CLO13, p. 58]
152152
sgn = (M == lex || M == rinvlex) ? -1 : 1
153-
@test sgn * cmp(x * y^2 * z^3, x^3 * y^2) > 0
154-
@test cmp(x * y^2 * z^4, x * y * z^5) > 0
153+
@test sgn * compare(x * y^2 * z^3, x^3 * y^2) > 0
154+
@test compare(x * y^2 * z^4, x * y * z^5) > 0
155155
# [CLO13, p. 59]
156-
@test cmp(x^5 * y * z, x^4 * y * z^2) > 0
156+
@test compare(x^5 * y * z, x^4 * y * z^2) > 0
157157
# [CLO13] Cox, D., Little, J., & OShea, D.
158158
# *Ideals, varieties, and algorithms: an introduction to computational algebraic geometry and commutative algebra*.
159159
# Springer Science & Business Media, **2013**.

0 commit comments

Comments
 (0)