File tree 3 files changed +21
-0
lines changed
3 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -84,6 +84,7 @@ translate!(::LazySet, ::AbstractVector)
84
84
85
85
``` @docs
86
86
cartesian_product(::LazySet, ::LazySet)
87
+ convex_hull(::LazySet, ::LazySet)
87
88
difference(::LazySet, ::LazySet)
88
89
distance(::LazySet, ::LazySet)
89
90
exact_sum(::LazySet, ::LazySet)
Original file line number Diff line number Diff line change @@ -80,6 +80,7 @@ include("Mixed/translate!.jl")
80
80
include (" Mixed/translate.jl" )
81
81
82
82
include (" Binary/cartesian_product.jl" )
83
+ include (" Binary/convex_hull.jl" )
83
84
include (" Binary/difference.jl" )
84
85
include (" Binary/distance.jl" )
85
86
include (" Binary/exact_sum.jl" )
Original file line number Diff line number Diff line change
1
+ """
2
+ convex_hull(X::LazySet, Y::LazySet)
3
+
4
+ Compute the convex hull of (the union of) two sets.
5
+
6
+ ### Input
7
+
8
+ - `X` -- set
9
+ - `Y` -- set
10
+
11
+ ### Output
12
+
13
+ A set representing the convex hull of ``X ∪ Y``.
14
+
15
+ ### Notes
16
+
17
+ See [`convex_hull(::LazySet)`](@ref) for the convex hull of a single set.
18
+ """
19
+ function convex_hull (:: LazySet , :: LazySet ) end
You can’t perform that action at this time.
0 commit comments