Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add hash for SparsePoly #1691

Closed
wants to merge 1 commit into from
Closed
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
8 changes: 8 additions & 0 deletions src/generic/SparsePoly.jl
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,14 @@
#
###############################################################################

function Base.hash(a::SparsePoly, h::UInt)
b = 0x679c879b67bb8385%UInt
for i in 1:length(a)
b = xor(b, hash(a.exps[i], hash(a.coeffs[i], h)))
end
return b

Check warning on line 42 in src/generic/SparsePoly.jl

View check run for this annotation

Codecov / codecov/patch

src/generic/SparsePoly.jl#L37-L42

Added lines #L37 - L42 were not covered by tests
end

function coeff(x::SparsePoly, i::Int)
i < 0 && throw(DomainError(i, "cannot get the i-th coefficient with i < 0"))
return x.coeffs[i + 1]
Expand Down
Loading