Skip to content

Commit 353d102

Browse files
authored
Move eigs to ApproxFunBase (#880)
1 parent bc176c2 commit 353d102

File tree

5 files changed

+5
-101
lines changed

5 files changed

+5
-101
lines changed

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "ApproxFun"
22
uuid = "28f2ccd6-bb30-5033-b560-165f7b14dc2f"
3-
version = "0.13.18"
3+
version = "0.13.19"
44

55
[deps]
66
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"
@@ -22,7 +22,7 @@ StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
2222

2323
[compat]
2424
AbstractFFTs = "1.0"
25-
ApproxFunBase = "0.8.6"
25+
ApproxFunBase = "0.8.20"
2626
ApproxFunBaseTest = "0.1"
2727
ApproxFunFourier = "0.3"
2828
ApproxFunOrthogonalPolynomials = "0.5, 0.6"

src/ApproxFun.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import ApproxFunBase: Fun, UnsetSpace, VFun, UnivariateSpace, SumSpace, Space,
2323
isapproxinteger, components, promotedomainspace, choosedomainspace,
2424
AbstractProductSpace, MultivariateFun, BivariateSpace,
2525
@calculus_operator, slnorm, sample, chop!, 𝒟, ∫, ⨜, ⨍,
26-
InterlaceOperator_Diagonal
26+
InterlaceOperator_Diagonal, eigs
2727

2828
export ∫, ⨜, ⨍, 𝒟
2929

src/Extras/Extras.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ include("poetry.jl")
1717

1818
include("simplify.jl")
1919

20-
include("eigs.jl")
21-
2220
include("autodifferentiation.jl")
2321
include("fractional.jl")
2422

src/Extras/eigs.jl

Lines changed: 0 additions & 93 deletions
This file was deleted.

test/runtests.jl

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -201,9 +201,8 @@ end
201201

202202
@testset "sample" begin
203203
f=Fun(exp)
204-
x=sample(f,100000)
205-
x=sample(f,100000)
206-
@time x=sample(f,100000)
204+
sample(f,100000)
205+
@time sample(f,100000)
207206
end
208207

209208
@testset "Null space" begin

0 commit comments

Comments
 (0)