Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5c40c09

Browse files
committedOct 19, 2021
Fix some weight matrices.
1 parent a95421d commit 5c40c09

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/Rings/orderings.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ function weights(a::GenOrdering)
132132
end
133133
if a.ord == :wdeglex || a.ord == Symbol("Singular(Wp)")
134134
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)]
135+
identity_matrix(ZZ, length(a.vars)-1) zero_matrix(ZZ, length(a.vars)-1, 1)]
136136
end
137137
if a.ord == :wdegrevlex || a.ord == Symbol("Singular(wp)")
138138
return [matrix(ZZ, 1, length(a.vars), a.w);
@@ -154,7 +154,7 @@ function weights(a::GenOrdering)
154154
end
155155
if a.ord == :negwdeglex || a.ord == Symbol("Singular(Ws)")
156156
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)]
157+
-identity_matrix(ZZ, length(a.vars)-1) zero_matrix(ZZ, length(a.vars)-1, 1)]
158158
end
159159
if a.ord == :negwdegrevlex || a.ord == Symbol("Singular(ws)")
160160
return [-matrix(ZZ, 1, length(a.vars), a.w);

0 commit comments

Comments
 (0)
Please sign in to comment.