@@ -48,35 +48,32 @@ import DomainSets: Domain, indomain, UnionDomain, FullSpace, Point,
4848
4949import BandedMatrices: bandshift, bandwidth, colstop, bandwidths, BandedMatrix
5050
51- import Base: convert, getindex, * , + , - , == , < , <= , > , | , ! , != , eltype,
52- >= , / , ^ , \ , ∪ , transpose, size, copyto!, copy,
53- map, vcat, hcat, show, stride, sum, cumsum, conj, inv,
54- complex, reverse, exp, sqrt, abs, sign, issubset, values,
51+ import Base: convert, getindex, eltype, < , <= , + , - , * , / , ^ , == ,
52+ show, stride, sum, cumsum, conj, inv,
53+ complex, exp, sqrt, abs, sign, issubset,
5554 first, last, rand, intersect, setdiff,
56- isless, union, angle, isnan, isapprox, isempty, sort, merge,
57- minimum, maximum, extrema, argmax, argmin,
58- zeros, zero, one, promote_rule, length, resize!, isinf,
59- getproperty, cld, div, real, imag,
60- max, min, log, acosh, tanh, atanh,
61- atan, sinh, asinh,
62- tan, tanh, asin, sec, acos,
63- sin, cos, sinh, cosh,
64- asinh, acosh, atanh,
65- Array, Vector, Matrix, view, ones, split
66-
67- import LinearAlgebra: norm, mul!, det, eigvals, qr, Tridiagonal, transpose
68-
69- import FastTransforms: plan_chebyshevtransform, plan_chebyshevtransform!,
55+ isless, union, angle, isnan, isapprox, isempty,
56+ minimum, maximum, extrema, zeros, one, promote_rule,
57+ getproperty, real, imag, max, min, log, acos,
58+ sin, cos, asinh, acosh, atanh, ones
59+ # atan, tan, tanh, asin, sec, sinh, cosh,
60+ # split
61+
62+ using FastTransforms: plan_chebyshevtransform, plan_chebyshevtransform!,
7063 plan_ichebyshevtransform, plan_ichebyshevtransform!,
71- pochhammer, lgamma, chebyshevtransform!, ichebyshevtransform!
64+ pochhammer, lgamma
7265
73- import BlockBandedMatrices: blockbandwidths, subblockbandwidths
66+ import BlockBandedMatrices: blockbandwidths
7467
7568# we need to import all special functions to use Calculus.symbolic_derivatives_1arg
76- import SpecialFunctions: erfcx, dawson, erf,
69+ import SpecialFunctions: erfcx, dawson,
7770 hankelh1, hankelh2, besselj, bessely, besseli, besselk,
78- besselkx, hankelh1x, hankelh2x,
79- expm1, eta, gamma, erfc
71+ besselkx, hankelh1x, hankelh2x
72+ # The following are not extended here.
73+ # Some of these are extended in ApproxFunBase
74+ # erf, erfinv, erfc, erfcinv, erfi, gamma, lgamma, digamma, invdigamma,
75+ # trigamma, airyai, airybi, airyaiprime, airybiprime, besselj0,
76+ # besselj1, bessely0, bessely1
8077
8178using StaticArrays: SVector
8279
0 commit comments