Skip to content

Commit c4d7be5

Browse files
authored
Clean up imports (#285)
1 parent d832ae5 commit c4d7be5

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

src/ApproxFunOrthogonalPolynomials.jl

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,18 @@
11
module ApproxFunOrthogonalPolynomials
2-
using Base, LinearAlgebra, Reexport, BandedMatrices, BlockBandedMatrices,
3-
BlockArrays, FillArrays, FastTransforms, IntervalSets,
4-
DomainSets, SpecialFunctions, FastGaussQuadrature
2+
3+
using BandedMatrices
4+
using BlockArrays
5+
using BlockBandedMatrices
6+
using DomainSets
7+
using FastGaussQuadrature
8+
using FastTransforms
9+
using FillArrays
10+
using HalfIntegers
11+
using IntervalSets
12+
using LinearAlgebra
13+
using OddEvenIntegers
14+
using Reexport
15+
using SpecialFunctions
516

617
@reexport using ApproxFunBase
718

@@ -85,9 +96,6 @@ using StaticArrays: SVector
8596

8697
import LinearAlgebra: isdiag, eigvals, eigen
8798

88-
using OddEvenIntegers
89-
using HalfIntegers
90-
9199
export bandmatrices_eigen, SymmetricEigensystem, SkewSymmetricEigensystem
92100

93101
points(d::IntervalOrSegmentDomain{T},n::Integer) where {T} =

0 commit comments

Comments
 (0)