Skip to content

Commit ef6f64c

Browse files
authored
Merge pull request #51 from Bumblebee00/fix_warnings_at_compile_time
Fix warnings at compile time
2 parents b5dc148 + e098325 commit ef6f64c

File tree

3 files changed

+13
-16
lines changed

3 files changed

+13
-16
lines changed

.github/badges/rules-count.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"schemaVersion": 1,
33
"label": "Total rules",
4-
"message": "3399",
4+
"message": "3400",
55
"color": "blue"
66
}

src/methods/risch/frontend.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -661,8 +661,7 @@ Base.promote(x::MPolyRingElem{Nemo.QQBarFieldElem}, y::QQFieldElem) = promote(x,
661661

662662

663663

664-
function TowerOfDifferentialFields(terms::Vector{Term}) where
665-
{T<:FieldElement, P<:MPolyRingElem{T}, F<:FracElem{P}}
664+
function TowerOfDifferentialFields(terms::Vector{Term})
666665
n = length(terms)
667666
MF = parent(terms[1].arg)
668667
MR = base_ring(MF)

src/methods/rule_based/general.jl

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
# ===== Special functions from a lot of packages
2-
# TODO extension to Symbolics?
3-
4-
# function from SpecialFunctions.jl that are not yet registered
5-
@register_symbolic SymbolicUtils.expinti(x)
6-
@register_symbolic SymbolicUtils.expint(nu, z)
7-
@register_symbolic SymbolicUtils.gamma(x, y)
8-
@register_symbolic SymbolicUtils.sinint(x)
9-
@register_symbolic SymbolicUtils.cosint(x)
10-
# other from SpecialFunctions.jl used:
11-
# SymbolicUtils.gamma(x)
12-
# SymbolicUtils.loggamma
13-
# SymbolicUtils.erfi
14-
# SymbolicUtils.erf
2+
3+
# function from SpecialFunctions.jl used:
4+
# SpecialFunctions.expinti(x)
5+
# SpecialFunctions.expint(nu, z)
6+
# SpecialFunctions.gamma(x, y)
7+
# SpecialFunctions.sinint(x)
8+
# SpecialFunctions.cosint(x)
9+
# SpecialFunctions.gamma(x)
10+
# SpecialFunctions.loggamma
11+
# SpecialFunctions.erfi
12+
# SpecialFunctions.erf
1513

1614
using Elliptic
1715
@register_symbolic Elliptic.F(phi, m) # incomplete first kind

0 commit comments

Comments
 (0)