Skip to content

Commit 5909e9d

Browse files
committed
Update Ultraspherical
1 parent ac88ff7 commit 5909e9d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Spaces/Ultraspherical/UltrasphericalOperators.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ function Conversion(A::Chebyshev, B::Ultraspherical)
141141
CAU = ConcreteConversion(A, U)
142142
v2 = Union{eltype(v), typeof(CAU)}[v; CAU]
143143
bwsum = (0, (isapproxinteger(mB) ? 2length(v2) : ℵ₀))
144-
return ConversionWrapper(TimesOperator(v2, bwsum, (ℵ₀,ℵ₀), bwsum))
144+
return ConversionWrapper(TimesOperator(v2, bwsum, (ℵ₀,ℵ₀), bwsum), A, B)
145145
end
146146
throw(ArgumentError("please implement $A$B"))
147147
end
@@ -175,7 +175,7 @@ function Conversion(A::Ultraspherical,B::Ultraspherical)
175175
v = [v; vlast]
176176
end
177177
bwsum = (0, (isapproxinteger(b-a) ? 2length(v) : ℵ₀))
178-
return ConversionWrapper(TimesOperator(v, bwsum, (ℵ₀,ℵ₀), bwsum))
178+
return ConversionWrapper(TimesOperator(v, bwsum, (ℵ₀,ℵ₀), bwsum), A, B)
179179
end
180180
end
181181
throw(ArgumentError("please implement $A$B"))

0 commit comments

Comments
 (0)