Skip to content

Commit 41da4d0

Browse files
authored
fix issue #593 (#595)
1 parent 9cd95fb commit 41da4d0

File tree

3 files changed

+25
-12
lines changed

3 files changed

+25
-12
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name = "Polynomials"
22
uuid = "f27b6e38-b328-58d1-80ce-0feddd5e7a45"
33
license = "MIT"
44
author = "JuliaMath"
5-
version = "4.0.15"
5+
version = "4.0.16"
66

77
[deps]
88
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"

src/rational-functions/common.jl

+17-9
Original file line numberDiff line numberDiff line change
@@ -427,22 +427,23 @@ end
427427

428428
## ---- zeros, poles, ...
429429
"""
430-
poles(pq::AbstractRationalFunction;
431-
method=:numerical, multroot_method=:direct, kwargs...)
430+
poles(pq::AbstractRationalFunction{T};
431+
method=:numerical, multroot_method=nothing, kwargs...) where {T}
432432
433433
For a rational function `p/q`, first reduces to normal form, then finds the roots and multiplicities of the resulting denominator.
434434
435435
* `method` is used to pass to `lowest_terms`
436-
* `multroot_method` is passed to the method argument of `multroot`, which can be `:direct` (the faster default) or `:iterative` (the slower, and possibly more robust alternate)
436+
* `multroot_method` is passed to the method argument of `multroot`, which can be `:direct` (the faster default) or `:iterative` (the slower, and possibly more robust alternate). The default is `:direct` save for `Big` values in which case `:iterative` is used.
437437
438438
"""
439-
function poles(pq::AbstractRationalFunction;
439+
function poles(pq::AbstractRationalFunction{T};
440440
method=:numerical, # for lowest_terms
441-
multroot_method=:direct, # or :iterative
442-
kwargs...)
441+
multroot_method=nothing, # :direct or:iterative
442+
kwargs...) where {T}
443443
pq′ = lowest_terms(pq; method=method, kwargs...)
444444
den = denominator(pq′)
445-
mr = Multroot.multroot(den; method=multroot_method)
445+
mmethod = something(multroot_method, default_multroot_method(T))
446+
mr = Multroot.multroot(den; method=mmethod)
446447
(zs=mr.values, multiplicities = mr.multiplicities)
447448
end
448449

@@ -452,12 +453,19 @@ end
452453
Return the `zeros` of the rational function (after cancelling commong factors, the `zeros` are the roots of the numerator.
453454
454455
"""
455-
function roots(pq::AbstractRationalFunction; method=:numerical, kwargs...)
456+
function roots(pq::AbstractRationalFunction{T};
457+
method=:numerical,
458+
multroot_method=nothing, # :direct or:iterative
459+
kwargs...) where {T}
456460
pq′ = lowest_terms(pq; method=method, kwargs...)
457461
den = numerator(pq′)
458-
mr = Multroot.multroot(den)
462+
mmethod = something(multroot_method, default_multroot_method(T))
463+
mr = Multroot.multroot(den; method=mmethod)
459464
(zs=mr.values, multiplicities = mr.multiplicities)
460465
end
466+
default_multroot_method(::Type{T}) where {T<:Union{BigFloat, Complex{BigFloat}, BigInt, Complex{BigInt}}} = :iterative
467+
default_multroot_method(::Any) = :direct
468+
461469

462470
"""
463471
residues(pq::AbstractRationalFunction; method=:numerical, kwargs...)

test/StandardBasis.jl

+7-2
Original file line numberDiff line numberDiff line change
@@ -1038,9 +1038,14 @@ end
10381038
q = Polynomial(dencoeffs)
10391039
r = p//q
10401040

1041-
@test_throws ArgumentError poles(r)
1042-
out = poles(r; multroot_method=:iterative)
1041+
out = roots(r)
10431042
@test out.multiplicities == [3]
1043+
our = poles(r)
1044+
@test out.multiplicities == [3]
1045+
1046+
multroot_method = :direct # fails if direct
1047+
@test_throws ArgumentError poles(r; multroot_method)
1048+
@test_throws ArgumentError roots(r; multroot_method)
10441049
end
10451050

10461051
@testset "critical points" begin

0 commit comments

Comments
 (0)