We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13266b1 commit 4ee7576Copy full SHA for 4ee7576
test/comparison.jl
@@ -26,6 +26,9 @@ function test_errors()
26
"Ordering `$M` is not a valid ordering, use `Graded{$M}` instead.",
27
)
28
@test_throws err ExponentsIterator{M}([0], maxdegree = 2)
29
+ exps = ExponentsIterator{LexOrder}([0])
30
+ err = ErrorException("The iterator is infinity because `maxdegree` is `nothing`.")
31
+ @test_throws err length(exps)
32
end
33
34
function test_exponents_iterator()
0 commit comments