Skip to content

Commit 3c28c58

Browse files
committed
require DomainSets 0.0.2
1 parent 2c76cd1 commit 3c28c58

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ ToeplitzMatrices = "c751599d-da0a-543b-9d20-d0a503d91d24"
3030

3131
[compat]
3232
AbstractFFTs = "≥ 0.3.1"
33-
ApproxFunBase = "0.0.3, 0.0.4"
33+
ApproxFunBase = "0.0.5"
3434
BandedMatrices = "0.9.0"
3535
BlockArrays = "0.8.0"
3636
BlockBandedMatrices = "0.4.0"
3737
Calculus = "≥ 0.1.15"
3838
DSP = "≥ 0.5.1"
39-
DomainSets = "0.0.1"
39+
DomainSets = "0.0.2"
4040
DualNumbers = "≥ 0.4.0"
4141
FFTW = "≥ 0.2.4"
4242
FastGaussQuadrature = "≥ 0.3.2"

src/ApproxFunOrthogonalPolynomials.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ import ApproxFunBase: normalize!, flipsign, FiniteRange, Fun, MatrixFun, UnsetSp
4747

4848
import DomainSets: Domain, indomain, UnionDomain, ProductDomain, FullSpace, Point, elements, DifferenceDomain,
4949
Interval, ChebyshevInterval, boundary, ∂, rightendpoint, leftendpoint,
50-
dimension
50+
dimension, WrappedDomain
5151

5252
import BandedMatrices: bandrange, bandshift,
5353
inbands_getindex, inbands_setindex!, bandwidth, AbstractBandedMatrix,

src/Domains/Domains.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,5 @@ isless(d2::Ray{true,T2},d1::IntervalOrSegment{T1}) where {T1<:Real,T2<:Real} = d
1313
Base.setdiff(d::Union{AbstractInterval,Segment,Ray,Line}, ptsin::UnionDomain{AS}) where {AS <: AbstractVector{P}} where {P <: Point} =
1414
affine_setdiff(d, ptsin)
1515

16+
Base.setdiff(d::Union{AbstractInterval,Segment,Ray,Line}, ptsin::WrappedDomain{<:AbstractVector}) =
17+
affine_setdiff(d, ptsin)

0 commit comments

Comments
 (0)