-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
51 changed files
with
1,526 additions
and
242 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[deps] | ||
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" | ||
|
||
[compat] | ||
Documenter = "~0.19.7" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
using Documenter, LazySets | ||
using Documenter, LazySets, Polyhedra, Optim | ||
|
||
makedocs( | ||
doctest = true, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Comparisons | ||
|
||
This section of the manual lists the comparison functions in floating point between scalars and between vectors. | ||
|
||
```@contents | ||
Pages = ["comparisons.md"] | ||
Depth = 3 | ||
``` | ||
|
||
```@meta | ||
CurrentModule = LazySets | ||
DocTestSetup = quote | ||
using LazySets | ||
end | ||
``` | ||
|
||
```@docs | ||
_leq(x::N, y::N; kwargs...) where {N<:Real} | ||
_leq(x::N, y::M; kwargs...) where {N<:Real, M<:Real} | ||
_geq(x::Real, y::Real; kwargs...) | ||
isapproxzero(x::Real; kwargs...) | ||
isapproxzero(x::N; ztol::Real=ABSZTOL(N)) where {N<:AbstractFloat} | ||
_isapprox(x::N, y::N; rtol::Real=Base.rtoldefault(N), ztol::Real=ABSZTOL(N), atol::Real=zero(N)) where {N<:AbstractFloat} | ||
_leq(x::N, y::N; rtol::Real=Base.rtoldefault(N), ztol::Real=ABSZTOL(N), atol::Real=zero(N)) where {N<:AbstractFloat} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Parallel | ||
|
||
This section of the manual describes the parallel implementation of some | ||
algorithms in the `LazySets` library. These algorithms are implemented in the | ||
`LazySets.Parallel` module. | ||
|
||
```@contents | ||
Pages = ["parallel.md"] | ||
Depth = 3 | ||
``` | ||
|
||
```@meta | ||
CurrentModule = LazySets.Parallel | ||
DocTestSetup = quote | ||
using LazySets, LazySets.Parallel | ||
end | ||
``` | ||
|
||
```@docs | ||
Parallel | ||
``` | ||
|
||
## Box approximations | ||
|
||
```@docs | ||
LazySets.Parallel.interval_hull | ||
LazySets.Parallel.box_approximation | ||
LazySets.Parallel.symmetric_interval_hull | ||
LazySets.Parallel.box_approximation_symmetric | ||
LazySets.Parallel.box_approximation_helper_parallel | ||
LazySets.Parallel.process_chunk! | ||
``` | ||
|
||
## Distributed functions | ||
|
||
```@docs | ||
LazySets.Parallel.assign_chunk! | ||
LazySets.Parallel.distribute_task! | ||
LazySets.Parallel._prange | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.