Skip to content
#

sets

Here are 129 public repositories matching this topic...

schillic
schillic commented Mar 21, 2020

Some of the documentation is only added in an @require block. This leads to warnings with newer Documenter versions when loading the corresponding optional packages. Example:

julia> using LazySets, Polyhedra
┌ Warning: Replacing docs for `LazySets.HPolytope :: Union{Tuple{Union{HRepresentation{N}, Polyhedron{N}}}, Tuple{N}} where N` in module `LazySets`
└ @ Base.Docs docs/Docs.j
RaphaelS1
RaphaelS1 commented Dec 4, 2019
x = sample(1000)
y = sample(1000)

sx = Set$new(x)
sy = Set$new(y)

microbenchmark::microbenchmark(
  setdiff(x, y),
  sx - sy,
  unit = "s"
)

Gives a mean time in seconds of:

setdiff(x,y) = 4.681405e-05
sx - sy = 1.639163e-02

A considerable difference. The additional bloat is due to a lot of checks that sort through the correct dispatch methods and use tricks for

mforets
mforets commented Dec 17, 2018

In index.md, when one package uses MathematicalSets, add a subsection like the following:

## Usage

The following packages implement the `MathematicalSets.AbstractSet` interface:

|Library|Description|
|-------|------------|
|[LazySets](https://github.com/JuliaReach/LazySets.jl)|A Julia package for calculus with convex sets|
|[Polyhedra](https://github.com/JuliaPolyhedra/Polyhed

Improve this page

Add a description, image, and links to the sets topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the sets topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.