DomainSets.jl icon indicating copy to clipboard operation
DomainSets.jl copied to clipboard

A Julia package for describing domains as continuous sets of elements

Results 20 DomainSets.jl issues
Sort by recently updated
recently updated
newest added

I might add a Makie extension for plotting rectangles, etc. But how to deal with v1.6 support? Just Only support in in v1.9+?

Codecov isn't running: https://github.com/JuliaApproximation/DomainSets.jl/actions/runs/8590132797

Any objection to me moving the DomainSets specific code from https://github.com/JuliaApproximation/MultivariateOrthogonalPolynomials.jl/blob/master/src/triangle.jl to here?

Here are a few areas I'm thinking of to improve DomainSets. I'm linking to existing issues. 1. Factor out the map code. It has no place in this package, and...

I notice that a large part of [FunctionMaps/src/util/common.jl](https://github.com/JuliaApproximation/DomainSets.jl/blob/master/FunctionMaps/src/util/common.jl) coincides with [EltypeExtensions.jl](https://github.com/putianyi889/EltypeExtensions.jl) I made recently. Would it be a good idea to add that as a dependency?

At the start of DomainSets we identified a host of packages that did similar work (#14). There is an uncountable number of Julia packages defining a Point type! The combination...

As mentioned [here](https://github.com/JuliaMath/IntervalSets.jl/issues/183): ```julia julia> 1..2 * 2 1 .. 4 julia> 1..2 .* 2 1 .. 4 ``` We probably only want the latter and not the former, because...

We currently don't have a common function to query the domain or support of something (a distribution, measure, ML model, etc.) yet, right? We could add something like `getdomain(something)` and...

Hi, would you be interested in extending this package to cover non-euclidean spaces by working with manifolds from [Manifolds.jl](https://github.com/JuliaManifolds/Manifolds.jl)? The use case for this is Distributions.jl, which has lots of...