Skip to content

Commit 41afe86

Browse files
authored
Merge pull request #108 from thofma/patch-3
Allow Nemo 0.52.0 and tag 0.9.2
2 parents 6df4bf1 + df747c1 commit 41afe86

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "AlgebraicSolving"
22
uuid = "66b61cbe-0446-4d5d-9090-1ff510639f9d"
33
authors = ["ederc <[email protected]>", "Mohab Safey El Din <[email protected]", "Rafael Mohr <[email protected]>"]
4-
version = "0.9.1"
4+
version = "0.9.2"
55

66
[deps]
77
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
@@ -23,7 +23,7 @@ test = ["Test"]
2323
LinearAlgebra = "1.6"
2424
Logging = "1.6"
2525
Markdown = "1.6"
26-
Nemo = "0.43, 0.44, 0.45, 0.46, 0.47, 0.48, 0.49, 0.50, 0.51"
26+
Nemo = "0.43, 0.44, 0.45, 0.46, 0.47, 0.48, 0.49, 0.50, 0.51, 0.52"
2727
Printf = "1.6"
2828
Random = "1.6"
2929
StaticArrays = "1"

src/algorithms/solvers.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ function rational_solutions(
325325
param_t = I.rat_param
326326

327327
nvars = length(param_t.vars)
328-
lpol = filter(l->degree(l) == 1, keys(factor(param_t.elim).fac))
328+
lpol = filter(l->degree(l) == 1, first.(collect(factor(param_t.elim))))
329329
nb = length(lpol)
330330

331331
rat_elim = [-coeff(l, 0)// coeff(l, 1) for l in lpol]

0 commit comments

Comments
 (0)