We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02c68c6 commit 8b59004Copy full SHA for 8b59004
Project.toml
@@ -10,7 +10,7 @@ LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
10
MutableArithmetics = "d8a4904e-b15c-11e9-3269-09a3773c0cb0"
11
12
[compat]
13
-DataStructures = "0.17"
+DataStructures = "0.17.7"
14
MutableArithmetics = "0.2"
15
julia = "1"
16
src/operators.jl
@@ -105,7 +105,7 @@ function polynomial_merge!(
105
end
106
while buffer !== nothing && !isempty(buffer) && j <= n2
107
@assert i == k
108
- t = DataStructures.front(buffer)
+ t = first(buffer)
109
comp = compare_monomials(t, j)
110
if comp >= 0
111
if comp > 0
0 commit comments