Skip to content

Commit 2eab2e7

Browse files
ApproxFun. => ApproxFunBase.
1 parent 723c9de commit 2eab2e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/EigTest.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,10 +111,10 @@ Base._range(a::T, step::T, ::Nothing, len::Integer) where {T <: AbstractFloat} =
111111
V = Fun(identity, S)
112112
L = -Derivative(S, 2) + V
113113
C = Conversion(domainspace(L), rangespace(L))
114-
B4 = zeros(Operator{ApproxFun.prectype(S)}, 1, 2)
114+
B4 = zeros(Operator{ApproxFunBase.prectype(S)}, 1, 2)
115115
B4[1, 1] = -Evaluation(component(S, 1), rightendpoint, 1) - 100*0.5*Evaluation(component(S, 1), rightendpoint)
116116
B4[1, 2] = Evaluation(component(S, 2), leftendpoint, 1) - 100*0.5*Evaluation(component(S, 2), leftendpoint)
117-
B4 = ApproxFun.InterlaceOperator(B4, PiecewiseSpace, ApproxFun.ArraySpace)
117+
B4 = ApproxFunBase.InterlaceOperator(B4, PiecewiseSpace, ApproxFunBase.ArraySpace)
118118
B = [Evaluation(S, -1); Evaluation(S, 1) + Evaluation(S, 1, 1); continuity(S, 0); B4]
119119
QS = QuotientSpace(B)
120120
Q = Conversion(QS, S)

0 commit comments

Comments
 (0)