You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I recently discovered DomainSets.jl. It contains some of the sets we need, for example cartesian products, etc. What should this package's relationship to DomainSets be? I see a few possibilities.
No relationship - we act like DomainSets doesn't exist (but perhaps learn from it)
We maintain compatibility in case someone wants to use things from DomainSets, but also re-implement the functionality that we want here.
We use them as a base package for our interface and encourage using their sets in most cases, and only implement a few things that they don't provide (i.e. we would probably get rid of our product and use theirs.)
We re-export some of their sets like we do with IntervalSets (this seems bad)
We archive this package because DomainSets provides everything we need.
The text was updated successfully, but these errors were encountered:
Yes, it is a pretty nice package, but doesn't have some things that we want, like rand and clamp, so we will have to work out how to integrate with it.
I recently discovered DomainSets.jl. It contains some of the sets we need, for example cartesian products, etc. What should this package's relationship to DomainSets be? I see a few possibilities.
product
and use theirs.)The text was updated successfully, but these errors were encountered: