Skip to content

Commit

Permalink
implicit ultraspherical order from Jacobi (#883)
Browse files Browse the repository at this point in the history
* implicit ultraspherical order from Jacobi

* ConcreteConversion instead of Conversion
  • Loading branch information
jishnub authored May 17, 2023
1 parent 6691f83 commit a34f8d5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "ApproxFun"
uuid = "28f2ccd6-bb30-5033-b560-165f7b14dc2f"
version = "0.13.19"
version = "0.13.20"

[deps]
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"
Expand Down
2 changes: 1 addition & 1 deletion src/ApproxFun.jl
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import ApproxFunBase: Fun, UnsetSpace, VFun, UnivariateSpace, SumSpace, Space,
isapproxinteger, components, promotedomainspace, choosedomainspace,
AbstractProductSpace, MultivariateFun, BivariateSpace,
@calculus_operator, slnorm, sample, chop!, 𝒟, ∫, ⨜, ⨍,
InterlaceOperator_Diagonal, eigs
InterlaceOperator_Diagonal, eigs, ConcreteConversion

export ∫, ⨜, ⨍, 𝒟

Expand Down
9 changes: 4 additions & 5 deletions src/Extras/fractional.jl
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,13 @@ end
function LeftIntegral(S::Ultraspherical,k)
J = Jacobi(S)
LI = LeftIntegral(J,k)
LeftIntegralWrapper(LI*Conversion(S,J),0.5,S,rangespace(LI))
LeftIntegralWrapper(LI*ConcreteConversion(S,J),0.5,S,rangespace(LI))
end

function LeftIntegral(S::Chebyshev,k)
LI = LeftIntegral(Ultraspherical(1//2,domain(S)),k)
LeftIntegralWrapper(
LI*Conversion(S,Ultraspherical(1//2,domain(S))),
0.5,S,rangespace(LI))
SU = Ultraspherical(Legendre(domain(S)))
LI = LeftIntegral(SU,k)
LeftIntegralWrapper(LI*ConcreteConversion(S,SU),0.5,S,rangespace(LI))
end


Expand Down

2 comments on commit a34f8d5

@jishnub
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/83787

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.13.20 -m "<description of version>" a34f8d5f1902b6fe3c79b54257ff0886de54cbcc
git push origin v0.13.20

Please sign in to comment.