Skip to content

Commit

Permalink
Fix bun in CalculusOperator and import DomainSets.domain (#664)
Browse files Browse the repository at this point in the history
  • Loading branch information
dlfivefifty authored Dec 3, 2024
1 parent 2b85cfe commit 0340918
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "ApproxFunBase"
uuid = "fbd15aa5-315a-5a7d-a8a4-24992e37be05"
version = "0.9.30"
version = "0.9.31"

[deps]
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"
Expand Down
2 changes: 1 addition & 1 deletion src/ApproxFunBase.jl
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import DomainSets: Domain, indomain, UnionDomain, ProductDomain, Point, ∂,
SetdiffDomain, Interval, ChebyshevInterval, boundary,
rightendpoint, leftendpoint, dimension, WrappedDomain, VcatDomain,
component, components, ncomponents, factor, factors, nfactors,
canonicaldomain
canonicaldomain, domain

using AbstractFFTs: Plan

Expand Down
2 changes: 1 addition & 1 deletion src/Operators/banded/CalculusOperator.jl
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ macro calculus_operator(Op)
O = $Op(csp,k)
C = ApproxFunBase.Conversion_maybeconcrete(sp, csp, Val(:forward))
Top = ApproxFunBase.TimesOperator([O,C])
$WrappOp(Top, sp, k, ApproxFunBase.rangespace(O))
$WrappOp(Top, k, sp, ApproxFunBase.rangespace(O))
end

$DefaultOp(d,k) = $Op(ApproxFunBase.Space(d),k)
Expand Down

0 comments on commit 0340918

Please sign in to comment.