File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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)
You can’t perform that action at this time.
0 commit comments