Skip to content

Commit dd6c189

Browse files
committed
remove multithreading
1 parent 5c12391 commit dd6c189

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/algorithms/dimension.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function dimension(I::Ideal{T}) where T <: MPolyRingElem
2727

2828
res = Set([trues(ngens(R))])
2929
lead_exps = Vector{Vector{Int}}(undef, length(gb))
30-
Threads.@threads for i in eachindex(gb)
30+
for i in eachindex(gb)
3131
lead_exps[i] = _lead_exp_ord(gb[i], :degrevlex)
3232
end
3333
for lexp in lead_exps

src/algorithms/hilbert.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ function hilbert_series(I::Ideal{T}) where T <: MPolyRingElem
2828
groebner_basis(I, complete_reduction = true)
2929
end
3030
lead_exps = Vector{Vector{Int}}(undef, length(gb))
31-
Threads.@threads for i in eachindex(gb)
31+
for i in eachindex(gb)
3232
lead_exps[i] = _lead_exp_ord(gb[i], :degrevlex)
3333
end
3434
return _hilbert_series_mono(lead_exps)

0 commit comments

Comments
 (0)