File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -51,10 +51,13 @@ truebasis = [
5151 x5^ 5 - 1
5252]
5353basis = expand .(groebner_basis (system))
54- @test isequal (basis, truebasis)
54+ # monomial order can change, returning different but still valid bases
55+ @test_broken isequal (basis, truebasis)
56+ @test Symbolics. is_groebner_basis (basis)
5557
5658basis = expand .(groebner_basis (system, linalg= :deterministic ))
57- @test isequal (basis, truebasis)
59+ @test_broken isequal (basis, truebasis)
60+ @test Symbolics. is_groebner_basis (basis)
5861
5962N = 45671930739135174346839766056203605080877915151
6063system = [
@@ -70,7 +73,8 @@ truebasis = [
7073 x4^ 4 - N
7174]
7275basis = groebner_basis (system)
73- @test isequal (expand .(basis), truebasis)
76+ @test_broken isequal (expand .(basis), truebasis)
77+ @test Symbolics. is_groebner_basis (basis)
7478
7579# issues/1323
7680@variables t S (t) R (t)
You can’t perform that action at this time.
0 commit comments