Skip to content

Commit e937338

Browse files
bugfix
1 parent ba3b541 commit e937338

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/parametric_problems.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@ function ParamRdeSpecialDenomTan(a::P, b::F, gs::Vector{F}, D::Derivation) where
104104
error("monomial of derivation D must be hypertangent")
105105
iscompatible(a, D) && iscompatible(b, D) && all([iscompatible(g, D) for g in gs]) ||
106106
error("polynomial a and rational functions b and g_i must be in the domain of derivation D")
107-
isreduced(b, D) && isreduced(c, D) ||
108-
error("rational functions b and c must be reduced with respect to derivation D")
107+
isreduced(b, D) ||
108+
error("rational function b must be reduced with respect to derivation D")
109109
t = gen(parent(a))
110110
p = t^2+1
111111
degree(gcd(a, p))==0 || error("gcd(a, t^2+1) must be == 1")

0 commit comments

Comments
 (0)