We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a95421d commit 5c40c09Copy full SHA for 5c40c09
src/Rings/orderings.jl
@@ -132,7 +132,7 @@ function weights(a::GenOrdering)
132
end
133
if a.ord == :wdeglex || a.ord == Symbol("Singular(Wp)")
134
return [matrix(ZZ, 1, length(a.vars), a.w);
135
- zero_matrix(ZZ, length(a.vars)-1, 1) identity_matrix(ZZ, length(a.vars)-1)]
+ identity_matrix(ZZ, length(a.vars)-1) zero_matrix(ZZ, length(a.vars)-1, 1)]
136
137
if a.ord == :wdegrevlex || a.ord == Symbol("Singular(wp)")
138
@@ -154,7 +154,7 @@ function weights(a::GenOrdering)
154
155
if a.ord == :negwdeglex || a.ord == Symbol("Singular(Ws)")
156
return [-matrix(ZZ, 1, length(a.vars), a.w);
157
- zero_matrix(ZZ, length(a.vars)-1, 1) -identity_matrix(ZZ, length(a.vars)-1)]
+ -identity_matrix(ZZ, length(a.vars)-1) zero_matrix(ZZ, length(a.vars)-1, 1)]
158
159
if a.ord == :negwdegrevlex || a.ord == Symbol("Singular(ws)")
160
0 commit comments