-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #332 from JuliaReach/mforets/union_clustering
Union clustering
- Loading branch information
Showing
5 changed files
with
109 additions
and
3 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,44 @@ | ||
```@meta | ||
DocTestSetup = :(using ReachabilityAnalysis) | ||
CurrentModule = ReachabilityAnalysis | ||
``` | ||
|
||
# Clustering | ||
|
||
## Abstract interface | ||
|
||
```@docs | ||
AbstractClusteringMethod | ||
``` | ||
|
||
## No clustering | ||
|
||
```@docs | ||
NoClustering | ||
``` | ||
|
||
The following methods are available. | ||
|
||
## Lazy convexification | ||
|
||
```@docs | ||
LazyClustering | ||
``` | ||
|
||
## Box clustering | ||
|
||
```@docs | ||
BoxClustering | ||
``` | ||
|
||
## Zonotope clustering | ||
|
||
```@docs | ||
ZonotopeClustering | ||
``` | ||
|
||
## Lazy union | ||
|
||
```@docs | ||
UnionClustering | ||
``` |
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 |
---|---|---|
|
@@ -86,5 +86,6 @@ export | |
# Clustering methods | ||
NoClustering, | ||
LazyClustering, | ||
UnionClustering, | ||
BoxClustering, | ||
ZonotopeClustering |
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