Daan Huybrechs
Daan Huybrechs
feel free to do so
Hi, indeed there is quite some overlap. Is EltypeExtensions being used elsewhere? That code in common.jl goes back a long way. Since DomainSets is used by ApproxFun and by BasisFunctions,...
Names aside, is there a difference in functionality? The logic in common.jl is that an object has an `eltype`, a `numtype` and a `prectype`. Here, `eltype` is the standard element...
Are you familiar with ApproxFun and what's being used there for this functionality? I'd consider moving if it results in more sharing within JuliaApproximation. (Not a fan of the naming...
What's more: as soon as one package somewhere has the ability to plot a domain, we can borrow that functionality! Proof of concept: ```julia using DomainSets, DomainSetsExtensions, StaticArrays using Meshes,...
Hmm, I did not think of StaticArrays as a heavy dependency, but perhaps it is. For the time being, the main reason for DomainSets being larger than it should be...
That is definitely within scope. That is in fact one of the reasons there are three subtypes of `ProductDomain`: they differ in the way the composing domains are stored and...
Well it looks like we can depend on [StaticArraysCore.jl](https://github.com/JuliaArrays/StaticArraysCore.jl) instead, without any other changes. It improves load time by about 0.5s on my machine (a reduction of more than 50%)....
Thanks for reporting. The length is definitely an issue. For the first examples, I was interpreting the simplex as a volume I guess.
Depends - what is the "stats simplex" exactly? :-) It seems you can ask for the boundary of a simplex, which in 2D currently is the full triangle, hence its...