Skip to content

Commit bfa1bd9

Browse files
fix homogenizse part 2
1 parent f8a4cc7 commit bfa1bd9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/siggb/siggb.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,8 +228,7 @@ end
228228
# homogenize w.r.t. the last variable
229229
function _homogenize(F::Vector{P}) where {P <: MPolyRingElem}
230230
R = parent(first(F))
231-
S, vars = polynomial_ring(base_ring(R), ["x$i" for i in 1:nvars(R)+1],
232-
ordering = :degrevlex)
231+
S, vars = polynomial_ring(base_ring(R), ["x$i" for i in 1:nvars(R)+1])
233232
res = typeof(first(F))[]
234233
for f in F
235234
ctx = MPolyBuildCtx(S)

0 commit comments

Comments
 (0)