Skip to content

Commit fc3d173

Browse files
committed
v0.2.2
1 parent aff0015 commit fc3d173

File tree

5 files changed

+18
-29
lines changed

5 files changed

+18
-29
lines changed

Project.toml

Lines changed: 12 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,44 @@
11
name = "ApproxFunOrthogonalPolynomials"
22
uuid = "b70543e2-c0d9-56b8-a290-0d4d6d4de211"
3-
version = "0.2.1"
3+
version = "0.2.2"
44

55
[deps]
66
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"
77
ApproxFunBase = "fbd15aa5-315a-5a7d-a8a4-24992e37be05"
88
BandedMatrices = "aae01518-5342-5314-be14-df237901396f"
99
BlockArrays = "8e7c35d0-a365-5155-bbbb-fb81a777f24e"
1010
BlockBandedMatrices = "ffab5731-97b5-5995-9138-79e8c1846df0"
11-
Calculus = "49dc2e85-a5d0-5ad3-a950-438e2897f1b9"
12-
DSP = "717857b8-e6f2-59f4-9121-6e50c889abd2"
1311
DomainSets = "5b8099bc-c8ec-5219-889f-1d9e522a28bf"
14-
DualNumbers = "fa6b7ba4-c1ee-5f82-b5fc-ecf0adba8f74"
1512
FFTW = "7a1cc6ca-52ef-59f5-83cd-3a7055c09341"
1613
FastGaussQuadrature = "442a2c76-b920-505d-bb47-c5924d526838"
1714
FastTransforms = "057dd010-8810-581a-b7be-e3fc3b93f78c"
1815
FillArrays = "1a297f60-69ca-5386-bcde-b61e274b549b"
19-
InfiniteArrays = "4858937d-0d70-526a-a4dd-2d5cb5dd786c"
2016
IntervalSets = "8197267c-284f-5f27-9208-e0e47529a953"
21-
LazyArrays = "5078a376-72f3-5289-bfd5-ec5146d43c02"
2217
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
23-
LowRankApprox = "898213cb-b102-5a47-900c-97e73b919f73"
2418
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
2519
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
26-
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
2720
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
28-
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
29-
ToeplitzMatrices = "c751599d-da0a-543b-9d20-d0a503d91d24"
3021

3122
[compat]
3223
AbstractFFTs = "0.4"
3324
ApproxFunBase = "0.1.3"
3425
BandedMatrices = "0.9, 0.10"
3526
BlockArrays = "0.9"
3627
BlockBandedMatrices = "0.4.3"
37-
Calculus = "0.5"
38-
DSP = "0.5, 0.6"
3928
DomainSets = "0.1"
40-
DualNumbers = "0.6.2"
4129
FFTW = "0.3"
42-
FastGaussQuadrature = "0.3.2"
43-
FastTransforms = "0.5"
44-
FillArrays = "0.6"
45-
InfiniteArrays = "0.1"
30+
FastGaussQuadrature = "0.3.2, 0.4"
31+
FastTransforms = "0.5, 0.6"
32+
FillArrays = "0.6, 0.7"
4633
IntervalSets = "0.3.1"
47-
LazyArrays = "0.8, 0.9, 0.10"
48-
LowRankApprox = "0.2"
4934
Reexport = "0.2"
5035
SpecialFunctions = "0.7"
51-
StaticArrays = "0.9, 0.10, 0.11"
52-
ToeplitzMatrices = "0.5"
5336
julia = "1"
37+
38+
[extras]
39+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
40+
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
41+
LazyArrays = "5078a376-72f3-5289-bfd5-ec5146d43c02"
42+
43+
[targets]
44+
test = ["Test","StaticArrays","LazyArrays"]

src/ApproxFunOrthogonalPolynomials.jl

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module ApproxFunOrthogonalPolynomials
2-
using Base, LinearAlgebra, Reexport, BandedMatrices, BlockBandedMatrices, AbstractFFTs, FFTW, InfiniteArrays, BlockArrays, FillArrays, FastTransforms, IntervalSets,
2+
using Base, LinearAlgebra, Reexport, BandedMatrices, BlockBandedMatrices, AbstractFFTs, FFTW, BlockArrays, FillArrays, FastTransforms, IntervalSets,
33
DomainSets, Statistics, SpecialFunctions, FastGaussQuadrature
44

55
@reexport using ApproxFunBase
@@ -44,7 +44,7 @@ import ApproxFunBase: normalize!, flipsign, FiniteRange, Fun, MatrixFun, UnsetSp
4444
domaintype, diagindshift, rangetype, weight, isapproxinteger, default_Dirichlet, scal!, dotu,
4545
components, promoterangespace, promotedomainspace,
4646
block, blockstart, blockstop, blocklengths, isblockbanded, pointscompatible, affine_setdiff, complexroots,
47-
ℓ⁰, recα, recβ, recγ
47+
ℓ⁰, recα, recβ, recγ, ∞
4848

4949
import DomainSets: Domain, indomain, UnionDomain, ProductDomain, FullSpace, Point, elements, DifferenceDomain,
5050
Interval, ChebyshevInterval, boundary, ∂, rightendpoint, leftendpoint,
@@ -70,9 +70,7 @@ import Base: values, convert, getindex, setindex!, *, +, -, ==, <, <=, >, |, !,
7070
import LinearAlgebra: BlasInt, BlasFloat, norm, ldiv!, mul!, det, eigvals, dot, cross,
7171
qr, qr!, rank, isdiag, istril, istriu, issymmetric, ishermitian,
7272
Tridiagonal, diagm, diagm_container, factorize, nullspace,
73-
Hermitian, Symmetric, adjoint, transpose, char_uplo
74-
75-
import InfiniteArrays: Infinity, InfRanges, AbstractInfUnitRange, OneToInf
73+
Hermitian, Symmetric, adjoint, transpose, char_uplo
7674

7775
import FastTransforms: ChebyshevTransformPlan, IChebyshevTransformPlan, plan_chebyshevtransform,
7876
plan_chebyshevtransform!, plan_ichebyshevtransform, plan_ichebyshevtransform!,

test/JacobiTest.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using ApproxFunOrthogonalPolynomials, ApproxFunBase, Test, StaticArrays, SpecialFunctions, LinearAlgebra, InfiniteArrays
1+
using ApproxFunOrthogonalPolynomials, ApproxFunBase, Test, SpecialFunctions, LinearAlgebra
22
import ApproxFunBase: testbandedbelowoperator, testbandedoperator, testspace, testtransforms, Vec,
33
maxspace, NoSpace, hasconversion, testfunctional,
44
reverseorientation, ReverseOrientation

test/ODETest.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using ApproxFunOrthogonalPolynomials, ApproxFunBase, SpecialFunctions, LazyArrays, Test
1+
using ApproxFunOrthogonalPolynomials, ApproxFunBase, SpecialFunctions, Test, LazyArrays
22
import ApproxFunBase: Multiplication, testraggedbelowoperator, testbandedoperator, interlace, ∞
33

44
@testset "ODE" begin

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using ApproxFunOrthogonalPolynomials, InfiniteArrays, LinearAlgebra, Test
1+
using ApproxFunOrthogonalPolynomials, LinearAlgebra, Test
22

33
@testset "Domain" begin
44
@test reverseorientation(Arc(1,2,(0.1,0.2))) == Arc(1,2,(0.2,0.1))

0 commit comments

Comments
 (0)