Skip to content

Commit 0340918

Browse files
authored
Fix bun in CalculusOperator and import DomainSets.domain (#664)
1 parent 2b85cfe commit 0340918

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "ApproxFunBase"
22
uuid = "fbd15aa5-315a-5a7d-a8a4-24992e37be05"
3-
version = "0.9.30"
3+
version = "0.9.31"
44

55
[deps]
66
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"

src/ApproxFunBase.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import DomainSets: Domain, indomain, UnionDomain, ProductDomain, Point, ∂,
2323
SetdiffDomain, Interval, ChebyshevInterval, boundary,
2424
rightendpoint, leftendpoint, dimension, WrappedDomain, VcatDomain,
2525
component, components, ncomponents, factor, factors, nfactors,
26-
canonicaldomain
26+
canonicaldomain, domain
2727

2828
using AbstractFFTs: Plan
2929

src/Operators/banded/CalculusOperator.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ macro calculus_operator(Op)
4949
O = $Op(csp,k)
5050
C = ApproxFunBase.Conversion_maybeconcrete(sp, csp, Val(:forward))
5151
Top = ApproxFunBase.TimesOperator([O,C])
52-
$WrappOp(Top, sp, k, ApproxFunBase.rangespace(O))
52+
$WrappOp(Top, k, sp, ApproxFunBase.rangespace(O))
5353
end
5454

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

0 commit comments

Comments
 (0)