Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name = "MultivariatePolynomials"
uuid = "102ac46a-7ee4-5c85-9060-abc95bfdeaa3"
license = "MIT"
repo = "https://github.com/JuliaAlgebra/MultivariatePolynomials.jl"
version = "0.5.8"
version = "0.5.9"

[deps]
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
Expand Down
116 changes: 76 additions & 40 deletions src/comparison.jl
Original file line number Diff line number Diff line change
Expand Up @@ -346,16 +346,6 @@ end

Base.isless(t1::AbstractTermLike, t2::AbstractTermLike) = compare(t1, t2) < 0

_last_lex_index(n, ::Type{LexOrder}) = n
_prev_lex_index(i, ::Type{LexOrder}) = i - 1
_not_first_indices(n, ::Type{LexOrder}) = n:-1:2
_last_lex_index(_, ::Type{InverseLexOrder}) = 1
_prev_lex_index(i, ::Type{InverseLexOrder}) = i + 1
_not_first_indices(n, ::Type{InverseLexOrder}) = 1:(n-1)
_last_lex_index(n, ::Type{Graded{M}}) where {M} = _last_lex_index(n, M)
_prev_lex_index(i, ::Type{Graded{M}}) where {M} = _prev_lex_index(i, M)
_not_first_indices(n, ::Type{Graded{M}}) where {M} = _not_first_indices(n, M)

"""
struct ExponentsIterator{M}(
object;
Expand Down Expand Up @@ -418,25 +408,39 @@ struct ExponentsIterator{M,D<:Union{Nothing,Int},O}
mindegree::Int
maxdegree::D
inline::Bool
end

function ExponentsIterator{M}(
object;
mindegree::Int = 0,
maxdegree::Union{Nothing,Int} = nothing,
inline::Bool = false,
) where {M}
if length(object) == 0 && isnothing(maxdegree)
# Otherwise, it will incorrectly think that the iterator is infinite
# while it actually has zero elements
maxdegree = mindegree
function ExponentsIterator{M}(
object;
mindegree::Int = 0,
maxdegree::Union{Nothing,Int} = nothing,
inline::Bool = false,
) where {M}
if mindegree < 0
throw(
ArgumentError(
"The `mindegree` of `ExponentsIterator` cannot be negative.",
),
)
end
if M <: Reverse
throw(
ArgumentError(
"Ordering `$M` is not a valid ordering, use `Graded{$M}` instead.",
),
)
end
if length(object) == 0 && isnothing(maxdegree)
# Otherwise, it will incorrectly think that the iterator is infinite
# while it actually has zero elements
maxdegree = mindegree
end
return new{M,typeof(maxdegree),typeof(object)}(
object,
mindegree,
maxdegree,
inline,
)
end
return ExponentsIterator{M,typeof(maxdegree),typeof(object)}(
object,
mindegree,
maxdegree,
inline,
)
end

Base.eltype(::Type{ExponentsIterator{M,D,O}}) where {M,D,O} = O
Expand All @@ -460,6 +464,22 @@ end

nvariables(it::ExponentsIterator) = length(it.object)

_last_lex_index(n, ::Type{LexOrder}) = n
_prev_lex_index(i, ::Type{LexOrder}) = i - 1
_not_first_indices(n, ::Type{LexOrder}) = n:-1:2
_last_lex_index(_, ::Type{InverseLexOrder}) = 1
_prev_lex_index(i, ::Type{InverseLexOrder}) = i + 1
_not_first_indices(n, ::Type{InverseLexOrder}) = 1:(n-1)
_last_lex_index(n, ::Type{Reverse{LexOrder}}) = 1
_prev_lex_index(i, ::Type{Reverse{LexOrder}}) = i + 1
_not_first_indices(n, ::Type{Reverse{LexOrder}}) = (n-1):-1:1
_last_lex_index(n, ::Type{Reverse{InverseLexOrder}}) = n
_prev_lex_index(i, ::Type{Reverse{InverseLexOrder}}) = i - 1
_not_first_indices(n, ::Type{Reverse{InverseLexOrder}}) = 2:n
_last_lex_index(n, ::Type{Graded{M}}) where {M} = _last_lex_index(n, M)
_prev_lex_index(i, ::Type{Graded{M}}) where {M} = _prev_lex_index(i, M)
_not_first_indices(n, ::Type{Graded{M}}) where {M} = _not_first_indices(n, M)

_increase_degree(it::ExponentsIterator{<:Graded,Nothing}, _) = false
_increase_degree(it::ExponentsIterator{<:Graded,Int}, _) = false
_increase_degree(it::ExponentsIterator{M,Nothing}, _) where {M} = true
Expand All @@ -474,9 +494,10 @@ _adjust_degree(::ExponentsIterator{<:Graded}, _, Δ) = Δ
# so we need to add `it.mindegree - deg`
_adjust_degree(it::ExponentsIterator, deg, _) = max(0, it.mindegree - deg)

# Same as `BangBang.setindex!!`
_setindex!(x, v, i) = Base.setindex!(x, v, i)
_setindex!(x::Tuple, v, i) = Base.setindex(x, v, i)
_increment!(x, i) = _setindex!(x, x[i] + 1, i)
_increment!(x, Δ, i) = _setindex!(x, x[i] + Δ, i)

_zero(x) = zero(x)
_zero(x::Tuple) = zero.(x)
Expand All @@ -487,9 +508,34 @@ _zero!(x::Tuple) = _zero(x)
_copy(x) = copy(x)
_copy(x::Tuple) = x

function __iterate!(
it::ExponentsIterator{Graded{Reverse{M}}},
z,
i,
deg,
) where {M}
z = _increment!(z, -1, i)
k = _last_lex_index(nvariables(it), M)
Δ = z[k] + 1
z = _setindex!(z, 0, k)
z = _setindex!(z, Δ, _prev_lex_index(i, Reverse{M}))
return z, deg
end

function __iterate!(it::ExponentsIterator{M}, z, i, deg) where {M}
Δ = z[i] - 1
z = _setindex!(z, 0, i)
deg -= Δ
Δ = _adjust_degree(it, deg, Δ)
deg += Δ
z = _setindex!(z, Δ, _last_lex_index(nvariables(it), M))
z = _increment!(z, 1, _prev_lex_index(i, M))
return z, deg
end

function _iterate!(it::ExponentsIterator{M}, z, deg) where {M}
if _increase_degree(it, deg)
z = _increment!(z, _last_lex_index(nvariables(it), M))
z = _increment!(z, 1, _last_lex_index(nvariables(it), M))
return z, deg + 1
end
I = _not_first_indices(nvariables(it), M)
Expand All @@ -502,17 +548,7 @@ function _iterate!(it::ExponentsIterator{M}, z, deg) where {M}
z = _setindex!(z, deg + 1, _last_lex_index(nvariables(it), M))
return z, deg + 1
end
j = I[i]
Δ = z[j] - 1
z = _setindex!(z, 0, j)
j = I[i]
deg -= Δ
Δ = _adjust_degree(it, deg, Δ)
deg += Δ
z = _setindex!(z, Δ, _last_lex_index(nvariables(it), M))
j = I[i]
z = _increment!(z, _prev_lex_index(j, M))
return z, deg
return __iterate!(it, z, I[i], deg)
end

function Base.iterate(it::ExponentsIterator{M}) where {M}
Expand Down
15 changes: 14 additions & 1 deletion test/comparison.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,26 @@ function _test(nvars::Int, M; kws...)
return
end

function test_errors()
err = ArgumentError(
"The `mindegree` of `ExponentsIterator` cannot be negative.",
)
@test_throws err ExponentsIterator{LexOrder}([0], mindegree = -1)
M = Reverse{LexOrder}
err = ArgumentError(
"Ordering `$M` is not a valid ordering, use `Graded{$M}` instead.",
)
@test_throws err ExponentsIterator{M}([0], maxdegree = 2)
end

function test_exponents_iterator()
@testset "nvariables = $nvars" for nvars in 0:3
@testset "mindegree = $mindegree" for mindegree in 0:3
@testset "maxdegree = $maxdegree" for maxdegree in
vcat(nothing, 0:3)
for L in [LexOrder, InverseLexOrder]
@testset "M = $M" for M in [L, Graded{L}]
@testset "M = $M" for M in
[L, Graded{L}, Graded{Reverse{L}}]
_test(nvars, M; mindegree, maxdegree)
end
end
Expand Down
Loading