Skip to content

Commit 3cbb336

Browse files
authored
Merge pull request #112 from ederc/elim-fix-v092
fixes elimination GB bug due to fix via msolve v0.9.2
2 parents 4b90544 + a94964b commit 3cbb336

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ Random = "1.6"
2929
StaticArrays = "1"
3030
Test = "1.6"
3131
julia = "1.6"
32-
msolve_jll = "0.900.100"
32+
msolve_jll = "0.900.200"

test/algorithms/groebner-bases.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
I = Ideal([x+2*y+2*z-1, x^2+2*y^2+2*z^2-x, 2*x*y+2*y*z-y])
5555
G = eliminate(I, 2)
5656
H = MPolyRingElem[
57-
84*z^4+y-39
57+
84*z^4 - 40*z^3 + z^2 + z
5858
]
5959
@test G == H
6060
R, (a,b,c,d,x,y,z,w) = polynomial_ring(QQ, ["a", "b", "c", "d", "x", "y", "z", "w"])

0 commit comments

Comments
 (0)