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

fix typos in orderings #701

Merged
merged 1 commit into from
Sep 27, 2021
Merged
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: 4 additions & 4 deletions src/Rings/mpoly.jl
Original file line number Diff line number Diff line change
Expand Up @@ -414,8 +414,8 @@ end

Compute a weight ordering with a unique weight matrix.
"""
function simplify(M::MonomialOrdering)
ww = simplify_weight_matrix(weights(M))
function Hecke.simplify(M::MonomialOrdering)
ww = simplify_weight_matrix(M.o)
return MonomialOrdering(M.R, ordering(1:ncols(ww), ww))
end

Expand Down Expand Up @@ -450,11 +450,11 @@ end

import Base.==
function ==(M::MonomialOrdering, N::MonomialOrdering)
return simplify(M).o.wgt == simplify(N).o.wgt
return Hecke.simplify(M).o.wgt == Hecke.simplify(N).o.wgt
end

function Base.hash(M::MonomialOrdering, u::UInt)
return hash(simplify(M).o.wgt, u)
return hash(Hecke.simplify(M).o.wgt, u)
end

end # module Orderings
Expand Down