I am a little confused about what the difference between the two is meant to be? What tripped me was this subset checking of HalfLine for RealNumbers or RealLine
julia> using DomainSets
julia> d1 = DomainSets.RealNumbers()
RealNumbers()
julia> d2 = DomainSets.HalfLine()
0.0 .. Inf (closed-open) (HalfLine)
julia> issubset(d2, d1)
false
julia> d1 = DomainSets.RealLine()
-Inf .. Inf (open) (RealLine)
julia> issubset(d2, d1)
true
I am a little confused about what the difference between the two is meant to be? What tripped me was this subset checking of
HalfLineforRealNumbersorRealLine