JuliaApproximation / DomainSets.jl

A Julia package for describing domains as continuous sets of elements
MIT License
72 stars 12 forks source link

arithmetic operations with broadcasting #148

Open daanhb opened 7 months ago

daanhb commented 7 months ago

As mentioned here:

julia> 1..2 * 2
1 .. 4

julia> 1..2 .* 2
1 .. 4

We probably only want the latter and not the former, because we're not dealing with vector spaces.